feedjira-atypon 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fe7845c8db7f1601c06ad6c89074e2987a0b9d8a
4
+ data.tar.gz: 77a7d974ce8c06d4b78502317e11fd6e899a14e5
5
+ SHA512:
6
+ metadata.gz: e29858d69b233dec76d0610c8bcf91d86f527fcc1da5e60a0f67bb84fb83d7d68a887611f1f4132d2c7cd2c5826f338749e99b783e374b0f8924eb80c8cffecc
7
+ data.tar.gz: c7b31eec747c76425ac24ea0d3cddb9476108b5f2e798a4005b3f22320caac0dd987d20258ad6a35b31368b9af17b34861ec9a918370d6327361239b2b1ef70f
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ .bundle
2
+ .projections.json
3
+ .ruby-gemset
4
+ .ruby-version
5
+ Gemfile.lock
6
+ doc/
7
+ pkg/
8
+ rdoc/
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.1
3
+
4
+ Documentation:
5
+ Enabled: false
6
+
7
+ Style/ClassAndModuleChildren:
8
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,31 @@
1
+ language: ruby
2
+
3
+ cache: bundler
4
+
5
+ rvm:
6
+ - 2.1
7
+ - 2.2
8
+ - 2.3
9
+ - jruby-9
10
+ - ruby-head
11
+
12
+ env:
13
+ - HANDLER=nokogiri
14
+ - HANDLER=ox
15
+ - HANDLER=oga
16
+
17
+ matrix:
18
+ fast_finish: true
19
+ allow_failures:
20
+ - rvm: jruby-9
21
+ - rvm: ruby-head
22
+ exclude:
23
+ - rvm: jruby-9
24
+ env: HANDLER=ox
25
+
26
+ before_install:
27
+ - gem update bundler
28
+
29
+ script:
30
+ - bundle exec rake
31
+ - bundle exec danger
data/Dangerfile ADDED
@@ -0,0 +1 @@
1
+ commit_lint.check(warn: :all)
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source 'https://rubygems.org/'
2
+
3
+ gemspec
4
+
5
+ gem 'pry'
6
+
7
+ group :test do
8
+ gem 'oga'
9
+ gem 'ox', platforms: [:mri, :rbx]
10
+ gem 'rake'
11
+ end
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2017 theoldreader
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # feedjira-atypon
2
+ Atypon RSS format parser class for the [Feedjira Ruby Gem](http://feedjira.com/)
3
+
4
+ [![Build Status][travis-badge]][travis] [![Code Climate][code-climate-badge]][code-climate] [![Gem version][gem-version-badge]][gem-version]
5
+
6
+ [travis-badge]: https://travis-ci.org/theoldreader/feedjira-atypon.svg?branch=master
7
+ [travis]: https://travis-ci.org/theoldreader/feedjira-atypon
8
+ [code-climate-badge]: https://codeclimate.com/github/theoldreader/feedjira-atypon/badges/gpa.svg
9
+ [code-climate]: https://codeclimate.com/github/theoldreader/feedjira-atypon
10
+ [gem-version-badge]: https://badge.fury.io/gh/theoldreader%2Ffeedjira-atypon.svg
11
+ [gem-version]: https://badge.fury.io/gh/theoldreader%2Ffeedjira-atypon
12
+
13
+ ## About the Atypon Format this Parser Handles
14
+ Atypon is a popular publishing software that many scientific journals use. The format of the RSS feed this generates is RDF with each and every element with a namespace prefix.
15
+
16
+ Example:
17
+ ```xml
18
+ <rdf:RDF ...>
19
+ <rss:channel ...>
20
+ <rss:title ...></rss:title>
21
+ </rss:channel>
22
+ <rss:item ...>
23
+ ...
24
+ </rss:item>
25
+ ...
26
+ </rdf:RDF>
27
+ ```
28
+
29
+ ## Installation
30
+ Add this line to your application's Gemfile:
31
+
32
+ gem 'feedjira-atypon'
33
+
34
+ And then execute:
35
+
36
+ $ bundle
37
+
38
+ Or install it yourself as:
39
+
40
+ $ gem install feedjira-atypon
41
+
42
+ ## Configuration
43
+ You can configure `Feedjira` to use this parser in an initializer like so:
44
+ ```ruby
45
+ Feedjira.configure do |config|
46
+ config.parsers << Feedjira::Atypon
47
+ end
48
+ ```
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require 'rspec/core/rake_task'
2
+ require 'rubocop/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec) do |t|
5
+ t.verbose = false
6
+ end
7
+
8
+ RuboCop::RakeTask.new(:rubocop) do |t|
9
+ t.options = ['--display-cop-names']
10
+ end
11
+
12
+ task default: [:spec, :rubocop]
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.authors = ['Jim Fiorato']
5
+ s.email = 'hello@theoldreader.com.com'
6
+ s.homepage = 'https://github.com/theoldreader/feedjira-atypon'
7
+ s.license = 'MIT'
8
+ s.name = 'feedjira-atypon'
9
+ s.platform = Gem::Platform::RUBY
10
+ s.summary = 'Atypon RSS format parser for Feedjira'
11
+ s.version = '0.0.1'
12
+
13
+ s.files = `git ls-files`.split("\n")
14
+ s.require_paths = ['lib']
15
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+
17
+ s.required_ruby_version = '>=1.9.3'
18
+
19
+ s.add_dependency 'feedjira', '>= 2.1'
20
+
21
+ s.add_development_dependency 'danger'
22
+ s.add_development_dependency 'danger-commit_lint'
23
+ s.add_development_dependency 'rspec'
24
+ s.add_development_dependency 'rubocop', '0.46'
25
+ s.add_development_dependency 'vcr'
26
+ end
@@ -0,0 +1,19 @@
1
+ module Feedjira
2
+ module Parser
3
+ # Parser for dealing with Atypon feeds.
4
+ class Atypon
5
+ include SAXMachine
6
+ include Feedjira::FeedUtilities
7
+ element :"rss:title", as: :title
8
+ element :"rss:description", as: :description
9
+ element :"rss:link", as: :url
10
+ elements :"rss:item", as: :entries, class: AtyponEntry
11
+
12
+ attr_accessor :feed_url
13
+
14
+ def self.able_to_parse?(xml) #:nodoc:
15
+ (/\<rdf\:RDF/ =~ xml) && (/\<rss\:channel/ =~ xml)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,34 @@
1
+ module Feedjira
2
+ module Parser
3
+ # Parser for dealing with Atypon RSS feed entries.
4
+ # URL: https://www.atypon.com/
5
+ class AtyponEntry
6
+ include SAXMachine
7
+ include FeedEntryUtilities
8
+
9
+ element :"rss:title", as: :title
10
+ element :"rss:link", as: :url
11
+
12
+ element :"dc:creator", as: :author
13
+ element :"rss:author", as: :author
14
+ element :"content:encoded", as: :content
15
+ element :"rss:description", as: :summary
16
+
17
+ element :"media:content", as: :image, value: :url
18
+ element :"rss:enclosure", as: :image, value: :url
19
+
20
+ element :"rss:pubDate", as: :published
21
+ element :"rss:pubdate", as: :published
22
+ element :"dc:date", as: :published
23
+ element :"dc:Date", as: :published
24
+ element :"dcterms:created", as: :published
25
+
26
+ element :"dcterms:modified", as: :updated
27
+ element :"rss:issued", as: :published
28
+ elements :"rss:category", as: :categories
29
+
30
+ element :"rss:guid", as: :entry_id
31
+ element :"dc:identifier", as: :entry_id
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,5 @@
1
+ require 'sax-machine'
2
+ require 'feedjira'
3
+
4
+ require 'feedjira/parser/atypon_entry'
5
+ require 'feedjira/parser/atypon'
@@ -0,0 +1,42 @@
1
+ require File.join(File.dirname(__FILE__), %w(.. .. spec_helper))
2
+
3
+ describe Feedjira::Parser::Atypon do
4
+ describe '#will_parse?' do
5
+ it 'should return true for a atypon rss feed' do
6
+ expect(Feedjira::Parser::Atypon).to(
7
+ be_able_to_parse(sample_atypon_rss_feed)
8
+ )
9
+ end
10
+
11
+ it 'should return false for a regular RSS feed' do
12
+ expect(Feedjira::Parser::Atypon).to_not be_able_to_parse(sample_rss_feed)
13
+ end
14
+ end
15
+
16
+ describe 'parsing' do
17
+ before(:each) do
18
+ @feed = Feedjira::Parser::Atypon.parse(sample_atypon_rss_feed)
19
+ end
20
+
21
+ it 'should parse the title' do
22
+ expect(@feed.title).to eq 'American Public Health Association: American Journal of Public Health: Table of Contents' # rubocop:disable Metrics/LineLength
23
+ end
24
+
25
+ it 'should parse the description' do
26
+ expect(@feed.description).to eq 'Table of Contents for American Journal of Public Health. List of articles from both the latest and ahead of print issues.' # rubocop:disable Metrics/LineLength
27
+ end
28
+
29
+ it 'should parse the url' do
30
+ expect(@feed.url).to eq 'http://ajph.aphapublications.org/loi/ajph?af=R'
31
+ end
32
+
33
+ it 'should provide an accessor for the feed_url' do
34
+ expect(@feed).to respond_to :feed_url
35
+ expect(@feed).to respond_to :feed_url=
36
+ end
37
+
38
+ it 'should parse entries' do
39
+ expect(@feed.entries.size).to eq 20
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,42 @@
1
+ require 'spec_helper'
2
+
3
+ module Feedjira::Parser
4
+ describe Atypon do
5
+ describe '#will_parse?' do
6
+ it 'should return true for a atypon rss feed' do
7
+ expect(Atypon).to be_able_to_parse(sample_atypon_rss_feed)
8
+ end
9
+
10
+ it 'should return false for a regular RSS feed' do
11
+ expect(Atypon).to_not be_able_to_parse(sample_rss_feed)
12
+ end
13
+ end
14
+
15
+ describe 'parsing' do
16
+ before(:each) do
17
+ @feed = Atypon.parse(sample_atypon_rss_feed)
18
+ end
19
+
20
+ it 'should parse the title' do
21
+ expect(@feed.title).to eq 'American Public Health Association: American Journal of Public Health: Table of Contents' # rubocop:disable Metrics/LineLength
22
+ end
23
+
24
+ it 'should parse the description' do
25
+ expect(@feed.description).to eq 'Table of Contents for American Journal of Public Health. List of articles from both the latest and ahead of print issues.' # rubocop:disable Metrics/LineLength
26
+ end
27
+
28
+ it 'should parse the url' do
29
+ expect(@feed.url).to eq 'http://ajph.aphapublications.org/loi/ajph?af=R'
30
+ end
31
+
32
+ it 'should provide an accessor for the feed_url' do
33
+ expect(@feed).to respond_to :feed_url
34
+ expect(@feed).to respond_to :feed_url=
35
+ end
36
+
37
+ it 'should parse entries' do
38
+ expect(@feed.entries.size).to eq 20
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,14 @@
1
+ module SampleFeeds
2
+ FEEDS = {
3
+ sample_rss_feed: 'TenderLovemaking.xml',
4
+ sample_atypon_rss_feed: 'AtyponRSSFeed.xml'
5
+ }.freeze
6
+
7
+ FEEDS.each do |method, filename|
8
+ define_method(method) { load_sample filename }
9
+ end
10
+
11
+ def load_sample(filename)
12
+ File.read("#{File.dirname(__FILE__)}/sample_feeds/#{filename}")
13
+ end
14
+ end
@@ -0,0 +1,714 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:content="http://purl.org/rss/1.0/modules/content/"
6
+ xmlns:rss="http://purl.org/rss/1.0/"
7
+ xmlns:cc="http://web.resource.org/cc/"
8
+ xmlns:prism="http://prismstandard.org/namespaces/basic/2.0/">
9
+ <rss:channel rdf:about="http://ajph.aphapublications.org/loi/ajph?af=R">
10
+ <rss:title>American Public Health Association: American Journal of Public Health: Table of Contents</rss:title>
11
+ <rss:description>Table of Contents for American Journal of Public Health. List of articles from both the latest and ahead of print issues.</rss:description>
12
+ <rss:link>http://ajph.aphapublications.org/loi/ajph?af=R</rss:link>
13
+ <dc:title>American Public Health Association: American Journal of Public Health: Table of Contents</dc:title>
14
+ <dc:publisher>American Public Health Association</dc:publisher>
15
+ <dc:language>en-US</dc:language>
16
+ <prism:publicationName>American Journal of Public Health</prism:publicationName>
17
+ <rss:items>
18
+ <rdf:Seq>
19
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302274?af=R"/>
20
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302272?af=R"/>
21
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302354?af=R"/>
22
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302486?af=R"/>
23
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302513?af=R"/>
24
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302564?af=R"/>
25
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302624?af=R"/>
26
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302625?af=R"/>
27
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302410?af=R"/>
28
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302247?af=R"/>
29
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302198?af=R"/>
30
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302533?af=R"/>
31
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302450?af=R"/>
32
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302238?af=R"/>
33
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302306?af=R"/>
34
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302182?af=R"/>
35
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302511?af=R"/>
36
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302500?af=R"/>
37
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302077?af=R"/>
38
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302303?af=R"/>
39
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302256?af=R"/>
40
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302277?af=R"/>
41
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302288?af=R"/>
42
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302173?af=R"/>
43
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302350?af=R"/>
44
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302499?af=R"/>
45
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302378?af=R"/>
46
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302456?af=R"/>
47
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302323?af=R"/>
48
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302278?af=R"/>
49
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302353?af=R"/>
50
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302419?af=R"/>
51
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302388?af=R"/>
52
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302446?af=R"/>
53
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302449?af=R"/>
54
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302488?af=R"/>
55
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302555?af=R"/>
56
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302568?af=R"/>
57
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302548?af=R"/>
58
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302606?af=R"/>
59
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302532?af=R"/>
60
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302647?af=R"/>
61
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302601?af=R"/>
62
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302607?af=R"/>
63
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302604?af=R"/>
64
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302608?af=R"/>
65
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302368e?af=R"/>
66
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302634?af=R"/>
67
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302498?af=R"/>
68
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302469?af=R"/>
69
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302453?af=R"/>
70
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302455?af=R"/>
71
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302497?af=R"/>
72
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302512?af=R"/>
73
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302507?af=R"/>
74
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302476?af=R"/>
75
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302471?af=R"/>
76
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302347?af=R"/>
77
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302344?af=R"/>
78
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302609?af=R"/>
79
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302603?af=R"/>
80
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302600?af=R"/>
81
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302424?af=R"/>
82
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302432?af=R"/>
83
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302422?af=R"/>
84
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302454?af=R"/>
85
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302452?af=R"/>
86
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.301994?af=R"/>
87
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302355?af=R"/>
88
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302363?af=R"/>
89
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302433?af=R"/>
90
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.301926?af=R"/>
91
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302401?af=R"/>
92
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302536?af=R"/>
93
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.301906?af=R"/>
94
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302008?af=R"/>
95
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302343?af=R"/>
96
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302243?af=R"/>
97
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.301886?af=R"/>
98
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.301905?af=R"/>
99
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302374?af=R"/>
100
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.301964?af=R"/>
101
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302340?af=R"/>
102
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302342?af=R"/>
103
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302328?af=R"/>
104
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302360?af=R"/>
105
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302060?af=R"/>
106
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302122?af=R"/>
107
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302377?af=R"/>
108
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302357?af=R"/>
109
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302105?af=R"/>
110
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302349?af=R"/>
111
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302112?af=R"/>
112
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302076?af=R"/>
113
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.1054831?af=R"/>
114
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.1054832?af=R"/>
115
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302381?af=R"/>
116
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302383?af=R"/>
117
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302391?af=R"/>
118
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302397?af=R"/>
119
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302398?af=R"/>
120
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302400?af=R"/>
121
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302402?af=R"/>
122
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302403?af=R"/>
123
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302406?af=R"/>
124
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302411?af=R"/>
125
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302421?af=R"/>
126
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302423?af=R"/>
127
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302425?af=R"/>
128
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302427?af=R"/>
129
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302428?af=R"/>
130
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302430?af=R"/>
131
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302431?af=R"/>
132
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302435?af=R"/>
133
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302436?af=R"/>
134
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302445?af=R"/>
135
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302472?af=R"/>
136
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302481?af=R"/>
137
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302483?af=R"/>
138
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302484?af=R"/>
139
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302485?af=R"/>
140
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302496?af=R"/>
141
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302514?af=R"/>
142
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302515?af=R"/>
143
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302517?af=R"/>
144
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302521?af=R"/>
145
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302526?af=R"/>
146
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302537?af=R"/>
147
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302546?af=R"/>
148
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302552?af=R"/>
149
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302557?af=R"/>
150
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302559?af=R"/>
151
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302565?af=R"/>
152
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302566?af=R"/>
153
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302570?af=R"/>
154
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302575?af=R"/>
155
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302576?af=R"/>
156
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302587?af=R"/>
157
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302592?af=R"/>
158
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302632?af=R"/>
159
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302648?af=R"/>
160
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302649?af=R"/>
161
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302650?af=R"/>
162
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302651?af=R"/>
163
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302605?af=R"/>
164
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302341?af=R"/>
165
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302346?af=R"/>
166
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302366?af=R"/>
167
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302550?af=R"/>
168
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302193?af=R"/>
169
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302415?af=R"/>
170
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302434?af=R"/>
171
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302276?af=R"/>
172
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302280?af=R"/>
173
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302287?af=R"/>
174
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302307?af=R"/>
175
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302315?af=R"/>
176
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302220?af=R"/>
177
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302224?af=R"/>
178
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302228?af=R"/>
179
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302229?af=R"/>
180
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302248?af=R"/>
181
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302251?af=R"/>
182
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302056?af=R"/>
183
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302102?af=R"/>
184
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302196?af=R"/>
185
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302048?af=R"/>
186
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302155?af=R"/>
187
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302172?af=R"/>
188
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302176?af=R"/>
189
+ <rdf:li rdf:resource="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302177?af=R"/>
190
+ </rdf:Seq>
191
+ </rss:items>
192
+ </rss:channel>
193
+ <rss:image rdf:about="http://ajph.aphapublications.org/na101/home/literatum/publisher/apha/journals/content/ajph/2015/ajph.2015.105.issue-s2/ajph.2015.105.issue-s2/20150306/ajph.2015.105.issue-s2.cover.jpg">
194
+ <rss:title>American Journal of Public Health</rss:title>
195
+ <rss:url>http://ajph.aphapublications.org/na101/home/literatum/publisher/apha/journals/content/ajph/2015/ajph.2015.105.issue-s2/ajph.2015.105.issue-s2/20150306/ajph.2015.105.issue-s2.cover.jpg</rss:url>
196
+ <rss:link>http://ajph.aphapublications.org/loi/ajph?af=R</rss:link>
197
+ </rss:image>
198
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302274?af=R">
199
+ <rss:title>Effect of Systems Change and Use of Electronic Health Records on Quit Rates Among Tobacco Users in a Public Hospital System</rss:title>
200
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302274?af=R</rss:link>
201
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page e1-e7, April 2015. &lt;br/&gt;</content:encoded>
202
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page e1-e7, April 2015. &lt;br/&gt;</rss:description>
203
+ <dc:title>Effect of Systems Change and Use of Electronic Health Records on Quit Rates Among Tobacco Users in a Public Hospital System</dc:title>
204
+ <dc:identifier>doi:10.2105/AJPH.2014.302274</dc:identifier>
205
+ <dc:source>American Journal of Public Health</dc:source>
206
+ <dc:date>Fri, 06 Mar 2015 21:09:13 GMT</dc:date>
207
+ <dc:rights>© American Public Health Association 2015</dc:rights>
208
+ <dc:creator>Sarah Moody-Thomas</dc:creator>
209
+ <dc:creator>Laura Nasuti</dc:creator>
210
+ <dc:creator>Yong Yi</dc:creator>
211
+ <dc:creator>Michael D. Celestin</dc:creator>
212
+ <dc:creator>Ronald Horswell</dc:creator>
213
+ <dc:creator>Thomas G. Land</dc:creator>
214
+ <prism:publicationName>Effect of Systems Change and Use of Electronic Health Records on Quit Rates Among Tobacco Users in a Public Hospital System</prism:publicationName>
215
+ <prism:volume>105</prism:volume>
216
+ <prism:number>S2</prism:number>
217
+ <prism:startingPage>e1</prism:startingPage>
218
+ <prism:endingPage>e7</prism:endingPage>
219
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
220
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
221
+ <prism:doi>10.2105/AJPH.2014.302274</prism:doi>
222
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302274?af=R</prism:url>
223
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
224
+ <rss:category><![CDATA[A]]></rss:category>
225
+ <rss:category><![CDATA[B]]></rss:category>
226
+ </rss:item>
227
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302272?af=R">
228
+ <rss:title>Cervical Cancer Screening in a Sexually Transmitted Disease Clinic: Screening Adoption Experiences From a Midwestern Clinic</rss:title>
229
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302272?af=R</rss:link>
230
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page e8-e14, April 2015. &lt;br/&gt;</content:encoded>
231
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page e8-e14, April 2015. &lt;br/&gt;</rss:description>
232
+ <dc:title>Cervical Cancer Screening in a Sexually Transmitted Disease Clinic: Screening Adoption Experiences From a Midwestern Clinic</dc:title>
233
+ <dc:identifier>doi:10.2105/AJPH.2014.302272</dc:identifier>
234
+ <dc:source>American Journal of Public Health</dc:source>
235
+ <dc:date>Fri, 06 Mar 2015 21:09:15 GMT</dc:date>
236
+ <dc:rights>© American Public Health Association 2015</dc:rights>
237
+ <dc:creator>Beth E. Meyerson</dc:creator>
238
+ <dc:creator>M. Aaron Sayegh</dc:creator>
239
+ <dc:creator>Alissa Davis</dc:creator>
240
+ <dc:creator>Janet N. Arno</dc:creator>
241
+ <dc:creator>Gregory D. Zimet</dc:creator>
242
+ <dc:creator>Ann M. LeMonte</dc:creator>
243
+ <dc:creator>James A. Williams</dc:creator>
244
+ <dc:creator>Lynn Barclay</dc:creator>
245
+ <dc:creator>Barbara Van Der Pol</dc:creator>
246
+ <prism:publicationName>Cervical Cancer Screening in a Sexually Transmitted Disease Clinic: Screening Adoption Experiences From a Midwestern Clinic</prism:publicationName>
247
+ <prism:volume>105</prism:volume>
248
+ <prism:number>S2</prism:number>
249
+ <prism:startingPage>e8</prism:startingPage>
250
+ <prism:endingPage>e14</prism:endingPage>
251
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
252
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
253
+ <prism:doi>10.2105/AJPH.2014.302272</prism:doi>
254
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302272?af=R</prism:url>
255
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
256
+ </rss:item>
257
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302354?af=R">
258
+ <rss:title>A Case Study Examination of Structure and Function in a State Health Department Chronic Disease Unit</rss:title>
259
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302354?af=R</rss:link>
260
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page e15-e22, April 2015. &lt;br/&gt;</content:encoded>
261
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page e15-e22, April 2015. &lt;br/&gt;</rss:description>
262
+ <dc:title>A Case Study Examination of Structure and Function in a State Health Department Chronic Disease Unit</dc:title>
263
+ <dc:identifier>doi:10.2105/AJPH.2014.302354</dc:identifier>
264
+ <dc:source>American Journal of Public Health</dc:source>
265
+ <dc:date>Fri, 06 Mar 2015 21:09:46 GMT</dc:date>
266
+ <dc:rights>© American Public Health Association 2015</dc:rights>
267
+ <dc:creator>Jeanne Alongi</dc:creator>
268
+ <prism:publicationName>A Case Study Examination of Structure and Function in a State Health Department Chronic Disease Unit</prism:publicationName>
269
+ <prism:volume>105</prism:volume>
270
+ <prism:number>S2</prism:number>
271
+ <prism:startingPage>e15</prism:startingPage>
272
+ <prism:endingPage>e22</prism:endingPage>
273
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
274
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
275
+ <prism:doi>10.2105/AJPH.2014.302354</prism:doi>
276
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302354?af=R</prism:url>
277
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
278
+ </rss:item>
279
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302486?af=R">
280
+ <rss:title>Improving Access and Provision of Preventive Oral Health Care for Very Young, Poor, and Low-Income Children Through a New Interdisciplinary Partnership</rss:title>
281
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302486?af=R</rss:link>
282
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page e23-e29, April 2015. &lt;br/&gt;</content:encoded>
283
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page e23-e29, April 2015. &lt;br/&gt;</rss:description>
284
+ <dc:title>Improving Access and Provision of Preventive Oral Health Care for Very Young, Poor, and Low-Income Children Through a New Interdisciplinary Partnership</dc:title>
285
+ <dc:identifier>doi:10.2105/AJPH.2014.302486</dc:identifier>
286
+ <dc:source>American Journal of Public Health</dc:source>
287
+ <dc:date>Fri, 06 Mar 2015 21:08:32 GMT</dc:date>
288
+ <dc:rights>© American Public Health Association 2015</dc:rights>
289
+ <dc:creator>Diana L. Biordi</dc:creator>
290
+ <dc:creator>Marjet Heitzer</dc:creator>
291
+ <dc:creator>Eric Mundy</dc:creator>
292
+ <dc:creator>Marguerite DiMarco</dc:creator>
293
+ <dc:creator>Sherrey Thacker</dc:creator>
294
+ <dc:creator>Evelyn Taylor</dc:creator>
295
+ <dc:creator>Marlene Huff</dc:creator>
296
+ <dc:creator>Deborah Marino</dc:creator>
297
+ <dc:creator>Karen Fitzgerald</dc:creator>
298
+ <prism:publicationName>Improving Access and Provision of Preventive Oral Health Care for Very Young, Poor, and Low-Income Children Through a New Interdisciplinary Partnership</prism:publicationName>
299
+ <prism:volume>105</prism:volume>
300
+ <prism:number>S2</prism:number>
301
+ <prism:startingPage>e23</prism:startingPage>
302
+ <prism:endingPage>e29</prism:endingPage>
303
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
304
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
305
+ <prism:doi>10.2105/AJPH.2014.302486</prism:doi>
306
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302486?af=R</prism:url>
307
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
308
+ </rss:item>
309
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302513?af=R">
310
+ <rss:title>Profile of the Public Health Workforce: Registered TRAIN Learners in the United States</rss:title>
311
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302513?af=R</rss:link>
312
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page e30-e36, April 2015. &lt;br/&gt;</content:encoded>
313
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page e30-e36, April 2015. &lt;br/&gt;</rss:description>
314
+ <dc:title>Profile of the Public Health Workforce: Registered TRAIN Learners in the United States</dc:title>
315
+ <dc:identifier>doi:10.2105/AJPH.2014.302513</dc:identifier>
316
+ <dc:source>American Journal of Public Health</dc:source>
317
+ <dc:date>Fri, 06 Mar 2015 21:08:59 GMT</dc:date>
318
+ <dc:rights>© American Public Health Association 2015</dc:rights>
319
+ <dc:creator>Jeffery A. Jones</dc:creator>
320
+ <dc:creator>Lois Banks</dc:creator>
321
+ <dc:creator>Ilya Plotkin</dc:creator>
322
+ <dc:creator>Sunny Chanthavongsa</dc:creator>
323
+ <dc:creator>Nathan Walker</dc:creator>
324
+ <prism:publicationName>Profile of the Public Health Workforce: Registered TRAIN Learners in the United States</prism:publicationName>
325
+ <prism:volume>105</prism:volume>
326
+ <prism:number>S2</prism:number>
327
+ <prism:startingPage>e30</prism:startingPage>
328
+ <prism:endingPage>e36</prism:endingPage>
329
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
330
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
331
+ <prism:doi>10.2105/AJPH.2014.302513</prism:doi>
332
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302513?af=R</prism:url>
333
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
334
+ </rss:item>
335
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302564?af=R">
336
+ <rss:title>A New Era for Population Health: Government, Academia, and Community Moving Upstream Together</rss:title>
337
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302564?af=R</rss:link>
338
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S144-S144, April 2015. &lt;br/&gt;</content:encoded>
339
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S144-S144, April 2015. &lt;br/&gt;</rss:description>
340
+ <dc:title>A New Era for Population Health: Government, Academia, and Community Moving Upstream Together</dc:title>
341
+ <dc:identifier>doi:10.2105/AJPH.2015.302564</dc:identifier>
342
+ <dc:source>American Journal of Public Health</dc:source>
343
+ <dc:date>Fri, 06 Mar 2015 21:09:42 GMT</dc:date>
344
+ <dc:rights>© American Public Health Association 2015</dc:rights>
345
+ <dc:creator>Bechair Choucair</dc:creator>
346
+ <dc:creator>Jay D. Bhatt</dc:creator>
347
+ <prism:publicationName>A New Era for Population Health: Government, Academia, and Community Moving Upstream Together</prism:publicationName>
348
+ <prism:volume>105</prism:volume>
349
+ <prism:number>S2</prism:number>
350
+ <prism:startingPage>S144</prism:startingPage>
351
+ <prism:endingPage>S144</prism:endingPage>
352
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
353
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
354
+ <prism:doi>10.2105/AJPH.2015.302564</prism:doi>
355
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302564?af=R</prism:url>
356
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
357
+ </rss:item>
358
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302624?af=R">
359
+ <rss:title>Improving Population Health by Learning From Systems and Services</rss:title>
360
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302624?af=R</rss:link>
361
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S145-S147, April 2015. &lt;br/&gt;</content:encoded>
362
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S145-S147, April 2015. &lt;br/&gt;</rss:description>
363
+ <dc:title>Improving Population Health by Learning From Systems and Services</dc:title>
364
+ <dc:identifier>doi:10.2105/AJPH.2015.302624</dc:identifier>
365
+ <dc:source>American Journal of Public Health</dc:source>
366
+ <dc:date>Fri, 06 Mar 2015 21:08:57 GMT</dc:date>
367
+ <dc:rights>© American Public Health Association 2015</dc:rights>
368
+ <dc:creator>Glen P. Mays</dc:creator>
369
+ <dc:creator>F. Douglas Scutchfield</dc:creator>
370
+ <prism:publicationName>Improving Population Health by Learning From Systems and Services</prism:publicationName>
371
+ <prism:volume>105</prism:volume>
372
+ <prism:number>S2</prism:number>
373
+ <prism:startingPage>S145</prism:startingPage>
374
+ <prism:endingPage>S147</prism:endingPage>
375
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
376
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
377
+ <prism:doi>10.2105/AJPH.2015.302624</prism:doi>
378
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302624?af=R</prism:url>
379
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
380
+ </rss:item>
381
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302625?af=R">
382
+ <rss:title>The Value of the “System” in Public Health Services and Systems Research</rss:title>
383
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302625?af=R</rss:link>
384
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S147-S149, April 2015. &lt;br/&gt;</content:encoded>
385
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S147-S149, April 2015. &lt;br/&gt;</rss:description>
386
+ <dc:title>The Value of the “System” in Public Health Services and Systems Research</dc:title>
387
+ <dc:identifier>doi:10.2105/AJPH.2015.302625</dc:identifier>
388
+ <dc:source>American Journal of Public Health</dc:source>
389
+ <dc:date>Fri, 06 Mar 2015 21:08:52 GMT</dc:date>
390
+ <dc:rights>© American Public Health Association 2015</dc:rights>
391
+ <dc:creator>Craig W. Thomas</dc:creator>
392
+ <dc:creator>Liza Corso</dc:creator>
393
+ <dc:creator>Judith A. Monroe</dc:creator>
394
+ <prism:publicationName>The Value of the “System” in Public Health Services and Systems Research</prism:publicationName>
395
+ <prism:volume>105</prism:volume>
396
+ <prism:number>S2</prism:number>
397
+ <prism:startingPage>S147</prism:startingPage>
398
+ <prism:endingPage>S149</prism:endingPage>
399
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
400
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
401
+ <prism:doi>10.2105/AJPH.2015.302625</prism:doi>
402
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302625?af=R</prism:url>
403
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
404
+ </rss:item>
405
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302410?af=R">
406
+ <rss:title>Building a Culture of Health: A Critical Role for Public Health Services and Systems Research</rss:title>
407
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302410?af=R</rss:link>
408
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S150-S152, April 2015. &lt;br/&gt;</content:encoded>
409
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S150-S152, April 2015. &lt;br/&gt;</rss:description>
410
+ <dc:title>Building a Culture of Health: A Critical Role for Public Health Services and Systems Research</dc:title>
411
+ <dc:identifier>doi:10.2105/AJPH.2014.302410</dc:identifier>
412
+ <dc:source>American Journal of Public Health</dc:source>
413
+ <dc:date>Fri, 06 Mar 2015 21:09:14 GMT</dc:date>
414
+ <dc:rights>© American Public Health Association 2015</dc:rights>
415
+ <dc:creator>Alonzo L. Plough</dc:creator>
416
+ <prism:publicationName>Building a Culture of Health: A Critical Role for Public Health Services and Systems Research</prism:publicationName>
417
+ <prism:volume>105</prism:volume>
418
+ <prism:number>S2</prism:number>
419
+ <prism:startingPage>S150</prism:startingPage>
420
+ <prism:endingPage>S152</prism:endingPage>
421
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
422
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
423
+ <prism:doi>10.2105/AJPH.2014.302410</prism:doi>
424
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302410?af=R</prism:url>
425
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
426
+ </rss:item>
427
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302247?af=R">
428
+ <rss:title>Marshaling the Evidence: The Prioritized Public Health Accreditation Research Agenda</rss:title>
429
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302247?af=R</rss:link>
430
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S153-S158, April 2015. &lt;br/&gt;</content:encoded>
431
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S153-S158, April 2015. &lt;br/&gt;</rss:description>
432
+ <dc:title>Marshaling the Evidence: The Prioritized Public Health Accreditation Research Agenda</dc:title>
433
+ <dc:identifier>doi:10.2105/AJPH.2014.302247</dc:identifier>
434
+ <dc:source>American Journal of Public Health</dc:source>
435
+ <dc:date>Fri, 06 Mar 2015 21:08:02 GMT</dc:date>
436
+ <dc:rights>© American Public Health Association 2015</dc:rights>
437
+ <dc:creator>Jessica Kronstadt</dc:creator>
438
+ <dc:creator>Leslie M. Beitsch</dc:creator>
439
+ <dc:creator>Kaye Bender</dc:creator>
440
+ <prism:publicationName>Marshaling the Evidence: The Prioritized Public Health Accreditation Research Agenda</prism:publicationName>
441
+ <prism:volume>105</prism:volume>
442
+ <prism:number>S2</prism:number>
443
+ <prism:startingPage>S153</prism:startingPage>
444
+ <prism:endingPage>S158</prism:endingPage>
445
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
446
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
447
+ <prism:doi>10.2105/AJPH.2014.302247</prism:doi>
448
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302247?af=R</prism:url>
449
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
450
+ </rss:item>
451
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302198?af=R">
452
+ <rss:title>Defining the Functions of Public Health Governance</rss:title>
453
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302198?af=R</rss:link>
454
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S159-S166, April 2015. &lt;br/&gt;</content:encoded>
455
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S159-S166, April 2015. &lt;br/&gt;</rss:description>
456
+ <dc:title>Defining the Functions of Public Health Governance</dc:title>
457
+ <dc:identifier>doi:10.2105/AJPH.2014.302198</dc:identifier>
458
+ <dc:source>American Journal of Public Health</dc:source>
459
+ <dc:date>Fri, 06 Mar 2015 21:08:46 GMT</dc:date>
460
+ <dc:rights>© American Public Health Association 2015</dc:rights>
461
+ <dc:creator>Valeria Carlson</dc:creator>
462
+ <dc:creator>Marita J. Chilton</dc:creator>
463
+ <dc:creator>Liza C. Corso</dc:creator>
464
+ <dc:creator>Leslie M. Beitsch</dc:creator>
465
+ <prism:publicationName>Defining the Functions of Public Health Governance</prism:publicationName>
466
+ <prism:volume>105</prism:volume>
467
+ <prism:number>S2</prism:number>
468
+ <prism:startingPage>S159</prism:startingPage>
469
+ <prism:endingPage>S166</prism:endingPage>
470
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
471
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
472
+ <prism:doi>10.2105/AJPH.2014.302198</prism:doi>
473
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302198?af=R</prism:url>
474
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
475
+ </rss:item>
476
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302533?af=R">
477
+ <rss:title>Defining and Assessing Quality Improvement Outcomes: A Framework for Public Health</rss:title>
478
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302533?af=R</rss:link>
479
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S167-S173, April 2015. &lt;br/&gt;</content:encoded>
480
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S167-S173, April 2015. &lt;br/&gt;</rss:description>
481
+ <dc:title>Defining and Assessing Quality Improvement Outcomes: A Framework for Public Health</dc:title>
482
+ <dc:identifier>doi:10.2105/AJPH.2014.302533</dc:identifier>
483
+ <dc:source>American Journal of Public Health</dc:source>
484
+ <dc:date>Fri, 06 Mar 2015 21:08:41 GMT</dc:date>
485
+ <dc:rights>© American Public Health Association 2015</dc:rights>
486
+ <dc:creator>Anita W. McLees</dc:creator>
487
+ <dc:creator>Saira Nawaz</dc:creator>
488
+ <dc:creator>Craig Thomas</dc:creator>
489
+ <dc:creator>Andrea Young</dc:creator>
490
+ <prism:publicationName>Defining and Assessing Quality Improvement Outcomes: A Framework for Public Health</prism:publicationName>
491
+ <prism:volume>105</prism:volume>
492
+ <prism:number>S2</prism:number>
493
+ <prism:startingPage>S167</prism:startingPage>
494
+ <prism:endingPage>S173</prism:endingPage>
495
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
496
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
497
+ <prism:doi>10.2105/AJPH.2014.302533</prism:doi>
498
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302533?af=R</prism:url>
499
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
500
+ </rss:item>
501
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302450?af=R">
502
+ <rss:title>The Impacts of Local Health Department Consolidation on Public Health Expenditures: Evidence From Ohio</rss:title>
503
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302450?af=R</rss:link>
504
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S174-S180, April 2015. &lt;br/&gt;</content:encoded>
505
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S174-S180, April 2015. &lt;br/&gt;</rss:description>
506
+ <dc:title>The Impacts of Local Health Department Consolidation on Public Health Expenditures: Evidence From Ohio</dc:title>
507
+ <dc:identifier>doi:10.2105/AJPH.2014.302450</dc:identifier>
508
+ <dc:source>American Journal of Public Health</dc:source>
509
+ <dc:date>Fri, 06 Mar 2015 21:09:01 GMT</dc:date>
510
+ <dc:rights>© American Public Health Association 2015</dc:rights>
511
+ <dc:creator>John Hoornbeek</dc:creator>
512
+ <dc:creator>Michael E. Morris</dc:creator>
513
+ <dc:creator>Matthew Stefanak</dc:creator>
514
+ <dc:creator>Joshua Filla</dc:creator>
515
+ <dc:creator>Rohit Prodhan</dc:creator>
516
+ <dc:creator>Sharla A. Smith</dc:creator>
517
+ <prism:publicationName>The Impacts of Local Health Department Consolidation on Public Health Expenditures: Evidence From Ohio</prism:publicationName>
518
+ <prism:volume>105</prism:volume>
519
+ <prism:number>S2</prism:number>
520
+ <prism:startingPage>S174</prism:startingPage>
521
+ <prism:endingPage>S180</prism:endingPage>
522
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
523
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
524
+ <prism:doi>10.2105/AJPH.2014.302450</prism:doi>
525
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302450?af=R</prism:url>
526
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
527
+ </rss:item>
528
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302238?af=R">
529
+ <rss:title>Measuring Public Health Practice and Outcomes in Chronic Disease: A Call for Coordination</rss:title>
530
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302238?af=R</rss:link>
531
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S180-S188, April 2015. &lt;br/&gt;</content:encoded>
532
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S180-S188, April 2015. &lt;br/&gt;</rss:description>
533
+ <dc:title>Measuring Public Health Practice and Outcomes in Chronic Disease: A Call for Coordination</dc:title>
534
+ <dc:identifier>doi:10.2105/AJPH.2014.302238</dc:identifier>
535
+ <dc:source>American Journal of Public Health</dc:source>
536
+ <dc:date>Fri, 06 Mar 2015 21:09:07 GMT</dc:date>
537
+ <dc:rights>© American Public Health Association 2015</dc:rights>
538
+ <dc:creator>Deborah S. Porterfield</dc:creator>
539
+ <dc:creator>Todd Rogers</dc:creator>
540
+ <dc:creator>LaShawn M. Glasgow</dc:creator>
541
+ <dc:creator>Leslie M. Beitsch</dc:creator>
542
+ <prism:publicationName>Measuring Public Health Practice and Outcomes in Chronic Disease: A Call for Coordination</prism:publicationName>
543
+ <prism:volume>105</prism:volume>
544
+ <prism:number>S2</prism:number>
545
+ <prism:startingPage>S180</prism:startingPage>
546
+ <prism:endingPage>S188</prism:endingPage>
547
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
548
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
549
+ <prism:doi>10.2105/AJPH.2014.302238</prism:doi>
550
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302238?af=R</prism:url>
551
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
552
+ </rss:item>
553
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302306?af=R">
554
+ <rss:title>Laying the Groundwork for Evidence-Based Public Health: Why Some Local Health Departments Use More Evidence-Based Decision-Making Practices Than Others</rss:title>
555
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302306?af=R</rss:link>
556
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S189-S197, April 2015. &lt;br/&gt;</content:encoded>
557
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S189-S197, April 2015. &lt;br/&gt;</rss:description>
558
+ <dc:title>Laying the Groundwork for Evidence-Based Public Health: Why Some Local Health Departments Use More Evidence-Based Decision-Making Practices Than Others</dc:title>
559
+ <dc:identifier>doi:10.2105/AJPH.2014.302306</dc:identifier>
560
+ <dc:source>American Journal of Public Health</dc:source>
561
+ <dc:date>Fri, 06 Mar 2015 21:09:40 GMT</dc:date>
562
+ <dc:rights>© American Public Health Association 2015</dc:rights>
563
+ <dc:creator>Kay A. Lovelace</dc:creator>
564
+ <dc:creator>Robert E. Aronson</dc:creator>
565
+ <dc:creator>Kelly L. Rulison</dc:creator>
566
+ <dc:creator>Jeffrey D. Labban</dc:creator>
567
+ <dc:creator>Gulzar H. Shah</dc:creator>
568
+ <dc:creator>Mark Smith</dc:creator>
569
+ <prism:publicationName>Laying the Groundwork for Evidence-Based Public Health: Why Some Local Health Departments Use More Evidence-Based Decision-Making Practices Than Others</prism:publicationName>
570
+ <prism:volume>105</prism:volume>
571
+ <prism:number>S2</prism:number>
572
+ <prism:startingPage>S189</prism:startingPage>
573
+ <prism:endingPage>S197</prism:endingPage>
574
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
575
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
576
+ <prism:doi>10.2105/AJPH.2014.302306</prism:doi>
577
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302306?af=R</prism:url>
578
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
579
+ </rss:item>
580
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302182?af=R">
581
+ <rss:title>Persons With Disabilities as an Unrecognized Health Disparity Population</rss:title>
582
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302182?af=R</rss:link>
583
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S198-S206, April 2015. &lt;br/&gt;</content:encoded>
584
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S198-S206, April 2015. &lt;br/&gt;</rss:description>
585
+ <dc:title>Persons With Disabilities as an Unrecognized Health Disparity Population</dc:title>
586
+ <dc:identifier>doi:10.2105/AJPH.2014.302182</dc:identifier>
587
+ <dc:source>American Journal of Public Health</dc:source>
588
+ <dc:date>Fri, 06 Mar 2015 21:09:49 GMT</dc:date>
589
+ <dc:rights>© American Public Health Association 2015</dc:rights>
590
+ <dc:creator>Gloria L. Krahn</dc:creator>
591
+ <dc:creator>Deborah Klein Walker</dc:creator>
592
+ <dc:creator>Rosaly Correa-De-Araujo</dc:creator>
593
+ <prism:publicationName>Persons With Disabilities as an Unrecognized Health Disparity Population</prism:publicationName>
594
+ <prism:volume>105</prism:volume>
595
+ <prism:number>S2</prism:number>
596
+ <prism:startingPage>S198</prism:startingPage>
597
+ <prism:endingPage>S206</prism:endingPage>
598
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
599
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
600
+ <prism:doi>10.2105/AJPH.2014.302182</prism:doi>
601
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302182?af=R</prism:url>
602
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
603
+ </rss:item>
604
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302511?af=R">
605
+ <rss:title>Association Between HIV Programs and Quality of Maternal Health Inputs and Processes in Kenya</rss:title>
606
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302511?af=R</rss:link>
607
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S207-S210, April 2015. &lt;br/&gt;</content:encoded>
608
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S207-S210, April 2015. &lt;br/&gt;</rss:description>
609
+ <dc:title>Association Between HIV Programs and Quality of Maternal Health Inputs and Processes in Kenya</dc:title>
610
+ <dc:identifier>doi:10.2105/AJPH.2014.302511</dc:identifier>
611
+ <dc:source>American Journal of Public Health</dc:source>
612
+ <dc:date>Fri, 06 Mar 2015 21:08:50 GMT</dc:date>
613
+ <dc:rights>© American Public Health Association 2015</dc:rights>
614
+ <dc:creator>Margaret E. Kruk</dc:creator>
615
+ <dc:creator>Aleksandra Jakubowski</dc:creator>
616
+ <dc:creator>Miriam Rabkin</dc:creator>
617
+ <dc:creator>Davies O. Kimanga</dc:creator>
618
+ <dc:creator>Francis Kundu</dc:creator>
619
+ <dc:creator>Travis Lim</dc:creator>
620
+ <dc:creator>Vane Lumumba</dc:creator>
621
+ <dc:creator>Tom Oluoch</dc:creator>
622
+ <dc:creator>Katherine A. Robinson</dc:creator>
623
+ <dc:creator>Wafaa El-Sadr</dc:creator>
624
+ <prism:publicationName>Association Between HIV Programs and Quality of Maternal Health Inputs and Processes in Kenya</prism:publicationName>
625
+ <prism:volume>105</prism:volume>
626
+ <prism:number>S2</prism:number>
627
+ <prism:startingPage>S207</prism:startingPage>
628
+ <prism:endingPage>S210</prism:endingPage>
629
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
630
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
631
+ <prism:doi>10.2105/AJPH.2014.302511</prism:doi>
632
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302511?af=R</prism:url>
633
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
634
+ </rss:item>
635
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302500?af=R">
636
+ <rss:title>Building the Evidence for Decision-Making: The Relationship Between Local Public Health Capacity and Community Mortality</rss:title>
637
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302500?af=R</rss:link>
638
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S211-S216, April 2015. &lt;br/&gt;</content:encoded>
639
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S211-S216, April 2015. &lt;br/&gt;</rss:description>
640
+ <dc:title>Building the Evidence for Decision-Making: The Relationship Between Local Public Health Capacity and Community Mortality</dc:title>
641
+ <dc:identifier>doi:10.2105/AJPH.2014.302500</dc:identifier>
642
+ <dc:source>American Journal of Public Health</dc:source>
643
+ <dc:date>Fri, 06 Mar 2015 21:09:59 GMT</dc:date>
644
+ <dc:rights>© American Public Health Association 2015</dc:rights>
645
+ <dc:creator>Anna P. Schenck</dc:creator>
646
+ <dc:creator>Anne Marie Meyer</dc:creator>
647
+ <dc:creator>Tzy-Mey Kuo</dc:creator>
648
+ <dc:creator>Dorothy Cilenti</dc:creator>
649
+ <prism:publicationName>Building the Evidence for Decision-Making: The Relationship Between Local Public Health Capacity and Community Mortality</prism:publicationName>
650
+ <prism:volume>105</prism:volume>
651
+ <prism:number>S2</prism:number>
652
+ <prism:startingPage>S211</prism:startingPage>
653
+ <prism:endingPage>S216</prism:endingPage>
654
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
655
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
656
+ <prism:doi>10.2105/AJPH.2014.302500</prism:doi>
657
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302500?af=R</prism:url>
658
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
659
+ </rss:item>
660
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302077?af=R">
661
+ <rss:title>Advancing the Use of Evidence-Based Decision-Making in Local Health Departments With Systems Science Methodologies</rss:title>
662
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302077?af=R</rss:link>
663
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S217-S222, April 2015. &lt;br/&gt;</content:encoded>
664
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S217-S222, April 2015. &lt;br/&gt;</rss:description>
665
+ <dc:title>Advancing the Use of Evidence-Based Decision-Making in Local Health Departments With Systems Science Methodologies</dc:title>
666
+ <dc:identifier>doi:10.2105/AJPH.2014.302077</dc:identifier>
667
+ <dc:source>American Journal of Public Health</dc:source>
668
+ <dc:date>Fri, 06 Mar 2015 21:08:29 GMT</dc:date>
669
+ <dc:rights>© American Public Health Association 2015</dc:rights>
670
+ <dc:creator>Yan Li</dc:creator>
671
+ <dc:creator>Nan Kong</dc:creator>
672
+ <dc:creator>Mark Lawley</dc:creator>
673
+ <dc:creator>Linda Weiss</dc:creator>
674
+ <dc:creator>José A. Pagán</dc:creator>
675
+ <prism:publicationName>Advancing the Use of Evidence-Based Decision-Making in Local Health Departments With Systems Science Methodologies</prism:publicationName>
676
+ <prism:volume>105</prism:volume>
677
+ <prism:number>S2</prism:number>
678
+ <prism:startingPage>S217</prism:startingPage>
679
+ <prism:endingPage>S222</prism:endingPage>
680
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
681
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
682
+ <prism:doi>10.2105/AJPH.2014.302077</prism:doi>
683
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302077?af=R</prism:url>
684
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
685
+ </rss:item>
686
+ <rss:item rdf:about="http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302303?af=R">
687
+ <rss:title>Simulating the Dynamic Effect of Land Use and Transport Policies on the Health of Populations</rss:title>
688
+ <rss:link>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302303?af=R</rss:link>
689
+ <content:encoded>American Journal of Public Health, &lt;a href="/toc/ajph/105/S2"&gt;Volume 105, Issue S2&lt;/a&gt;, Page S223-S229, April 2015. &lt;br/&gt;</content:encoded>
690
+ <rss:description>American Journal of Public Health, Volume 105, Issue S2, Page S223-S229, April 2015. &lt;br/&gt;</rss:description>
691
+ <dc:title>Simulating the Dynamic Effect of Land Use and Transport Policies on the Health of Populations</dc:title>
692
+ <dc:identifier>doi:10.2105/AJPH.2014.302303</dc:identifier>
693
+ <dc:source>American Journal of Public Health</dc:source>
694
+ <dc:date>Fri, 06 Mar 2015 21:08:17 GMT</dc:date>
695
+ <dc:rights>© American Public Health Association 2015</dc:rights>
696
+ <dc:creator>Roderick J. McClure</dc:creator>
697
+ <dc:creator>Claudia Adriazola-Steil</dc:creator>
698
+ <dc:creator>Christine Mulvihill</dc:creator>
699
+ <dc:creator>Michael Fitzharris</dc:creator>
700
+ <dc:creator>Paul Salmon</dc:creator>
701
+ <dc:creator>C. Paul Bonnington</dc:creator>
702
+ <dc:creator>Mark Stevenson</dc:creator>
703
+ <prism:publicationName>Simulating the Dynamic Effect of Land Use and Transport Policies on the Health of Populations</prism:publicationName>
704
+ <prism:volume>105</prism:volume>
705
+ <prism:number>S2</prism:number>
706
+ <prism:startingPage>S223</prism:startingPage>
707
+ <prism:endingPage>S229</prism:endingPage>
708
+ <prism:coverDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDate>
709
+ <prism:coverDisplayDate>Wed, 01 Apr 2015 07:00:00 GMT</prism:coverDisplayDate>
710
+ <prism:doi>10.2105/AJPH.2014.302303</prism:doi>
711
+ <prism:url>http://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2014.302303?af=R</prism:url>
712
+ <prism:copyright>© American Public Health Association 2015</prism:copyright>
713
+ </rss:item>
714
+ </rdf:RDF>