Sha256: b811cecca137d54381db36ba899385c45f9025a1974d204f634e0ada288fe8a1

Contents?: true

Size: 1.2 KB

Versions: 10

Compression:

Stored size: 1.2 KB

Contents

  # From Slh::Models::Site
  # These nodes are extracted to create .metadata_site_specific_xml
  # and removed to create metadata_non_site_specific_nokogiri
  # which is used in Host to put the site specific crap below 1 instance of the non specific crap
  # so you can give your IDP one metadata file
  #
  # def self.metadata_site_specific_xpaths
  #   ['//md:ArtifactResolutionService', '//md:SingleLogoutService','//md:AssertionConsumerService']
  # end

  # def metadata_site_specific_xml
  #   if @metadata_site_specific_xml.blank?
  #     @metadata_site_specific_xml = ''
  #     self.class.metadata_site_specific_xpaths.each do |xpath|
  #       @metadata_site_specific_xml << self.metadata_nokogiri.xpath(xpath).to_a.join("\n")
  #       @metadata_site_specific_xml << "\n"
  #     end
  #   end
  #   @metadata_site_specific_xml
  # end

  # def metadata_non_site_specific_nokogiri
  #   if @metadata_non_site_specific_nokogiri.blank?
  #     @metadata_non_site_specific_nokogiri = self.metadata_nokogiri.clone
  #     self.class.metadata_site_specific_xpaths.each do |xpath|
  #       @metadata_non_site_specific_nokogiri.xpath(xpath).remove
  #     end
  #   end
  #   @metadata_non_site_specific_nokogiri
  # end


Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
shibboleths_lil_helper-1.0.9 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.8 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.7 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.6 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.5 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.4 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.3 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.2 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.1 doc/deprecated_code_that_could_be_useful.rb
shibboleths_lil_helper-1.0.0 doc/deprecated_code_that_could_be_useful.rb