SlideShare ist ein Scribd-Unternehmen logo
1 von 28
SharePoint
Publishing 101
Becky Bertram
Owner, Savvy Technical Solutions
SharePoint MVP, Microsoft Certified Trainer, MCTS, MCSD, MCPD, MCITP
Web Content Management
WCM focuses on the
presentation of online
textual and graphical
content.
"Newspaper Story" 1950 Encyclopaedia
Britannica Films
Abridged from its full version
http://www.youtube.com/watch?v=G8cCS3o62iI
Tasks Involved in the
Publishing Process
 Writing the content
 Editing the content
 Editing the content for grammar and spelling
 Checking a proof/draft version
 Approving
 Contributing images to the story
 Deciding what goes on the front page
People Involved in the
Publishing Process
Paper SharePoint
Writer Contributor
Copy Editor Approver
City Editor Approver
Proof Reader Approver
Photo Lab Technician Graphic Designer
Press Room Technicians SharePoint Farm Admin
Newspaper Editor SharePoint Site Collection Admin
Publishing Site Collection
 A site collection is a “tree” of sites. A subsite is a site within
that tree of sites.
 For instance, your site collection might have a URL of
http://www.site.com/. You might keep all your news
articles in a subsite called “News”, with a URL of
http://www.site.com/News.
 A subsite can contain subsites. For instance you might have
a “Company News” subsite inside your “News” subsite. It
might have a URL like this:
http://www.site.com/News/CompanyNews
 SharePoint has various site templates. To create a WCM-
focused site, you typically create your site collection using
the “Publishing Portal” template.
 That’s why we call it a “Publishing” site.
The Publishing
Process
Step 1: Decide on Content
 What kind of page do I want to create? News story?
Department homepage? Product detail page? About
Us page?
 What are the pictures I want on the
page?
 Will I be linking to any documents
from this page?
 Is there anyone I need to talk to get
extra resources (such as images or documents)
created?
Step 2: Upload Dependent
Content
 A library is a SharePoint term for a location to store electronic
documents within a site collection.
 Different libraries typically hold different kinds of
documents. An Image Library typically stores
images and videos, while a Document Library
stores documents such as Word, Excel, and PDF
files, etc.
 A Publishing site collection has a Site Collection
Images library and a Site Collection Documents
library in the top level site. These are used for storing documents
used throughout the site collection.
 Each subsite has its own Images and Documents libraries. These are
used for storing items relevant for that particular subsite.
Step 3: Create your Page
 Where do you want to create your page?
 A page gets created in whatever subsite you’re in
when you create the page.
 What do you want your page’s URL to be?
 All web pages you create go inside a library called Pages.
Thus, your “physical” URL will always have this formula:
SiteCollectionURL + Web Hierarchy URL + /Pages/ + Page URL
http://www.site.com/AboutUs/BoardOfDirectors/Pages/JohnSmith.aspx
 What is the title of the page?
 This will show up in site navigation as well as on the page.
Step 4: Choose a Page Layout
 A content type describes the kind of page you’re
creating.
 News article: Title, Article Date, Byline, Page Content, Image,
Caption
 Product: Title, Image, Thumbnail Image, Product Number
 Each kind of content could have more than one visual
presentation on the page.
 Article with Image on Left
 Article with Image on right
 Article with No Image
 Product with Large Image
 Product with Thumbnail Image
 Each visual presentation is called a page layout.
Step 5: Add Content to Your Page
 Add text, images, and hyperlinks to your page
 You might also add web parts to your page.
A web part is a discrete unit of functionality
that can be dropped on a page.
 You’ll use the SharePoint ribbon to format your
content, just like you would if you were using
other Office products.
 You can preview what your page will look like.
 If you want your page to become visible on the site at a particular
day and time, or disappear from the site at a particular moment, you
can set that, too.
Step 6: Check in Your Page
 By default, pages can be checked out and check in. If you
have a page checked out, no one else can see the changes
you are making.
 By default, pages have “minor” and “major” versioning.
 A minor version is a decimal number, such 1.1
 A major version is a whole number, such as 2.0
 A page that has been checked in but still
has a minor number is considered a draft.
It can be seen by other authors, but not
end users.
 Once a page has been approved, it’s
incremented to the next whole number
Step 7: Approval and Go Live
 Once you feel your page is ready to be published,
you submit it for approval.
 By default, people who are members of the
SharePoint Approvers group can approve the page.
 Serial vs. Parallel
 All users in group vs. group approval
 Once the page has gone through
all stages of approval, it’s live on
the site.
Demo: Creating
and Approving a
Page
Understanding Navigation
 Navigation is dynamically generated based on your site
hierarchy and your publishing pages.
 In SharePoint “15”, navigation is built using the
Managed Metadata Service. This means the navigation
is built using keywords, and is not tied so much to a
page’s location in the site collection hierarchy.
 The global navigation refers to the “top nav”. This
navigation is usually static, in the sense that every
page has the same items at the top of the page.
 The current navigation refers to the navigation on the
side of the page (usually on the left) that is contextual,
meaning it changes based on a user’s location in the
site.
Modifying the Navigation
 Links in the navigation (both global and current) are based
on the pages and/or subsites in your site collection
hierarchy.
 For example, you have a subsite called “Products” with various
kinds of “Product” pages inside it.
 In SharePoint 15, you can alternatively build a navigation
structure, then “tag” different pages so they will show up
at that location in the hierarchy.
 For example, you create a term in your navigation structure called
“Product”, then you tag all the pages you want to show up in that
node with the “Product” keyword.
 This provides a way for navigation to not be tied to physical
location.
 There are security implications as to how you structure
your site collection. Security needs do not always mirror
taxonomy needs.
Understanding Dynamic Queries
 In Web 1.0, if you wanted a link to a new Web page,
you had to work with 2 pages: the new page you
created, and then the page that contained the link.
Broken links resulted when the location of the new
page changed, or the page was deleted.
 By generating dynamic queries, your content will
dynamically change based on the publication of new
content. There’s no need to ever “hard code” a link to
another page if you can retrieve it dynamically.
 Example of this is displaying the 5 most recent news
articles on the homepage of your site.
 Query results can have their look and feel modified
SharePoint 2010 Content
Query Web Part
Look and feel controlled by
modifying XSL style sheet(s)
SharePoint 15 Content Search
 Same idea as Content Query, but queries the
search index instead of the SQL database where
the content is stored
 Better performance, but not live data; query
triggers immediate indexing, however. (MS special
sauce)
 Look and feel modified by display templates
Understanding Master Pages
 Allows the construction, and later modification, of common
page elements in a central location. Often times the page
header, top navigation, side navigation, and footer are
included in the master page.
 The Master Page is built using HTML and Cascading Style
Sheets (CSS).
 Designers can build Master Pages that don’t look like a
typical SharePoint site.
 Can be built by developers using Visual Studio and
deployed by site administrator.
 In SharePoint 2010, can be built using SharePoint Designer
 In SharePoint 15, can be built in another design tool and
uploaded to SharePoint.
SharePoint 15 Design Changes
 You can import a design package
 You can pick a “pre-installed look”, much like you
could pick a theme for a blog or similar public site.
Examples of Publishing Sites
on the Web
 Kroger.com
 Energizer.com
 Recovery.gov
 VolvoCars.com
 Swiss.com (Swiss Air)
 Calphalon.com
 For a larger list, check out
http://www.topsharepoint.com/category/top-sites
Advanced Topics
 Multi-lingual sites
 Content Deployment
 Metadata
 Search
 Performance and Caching
Resources
Books
 Wrox SharePoint Six-in-One
Chapter 9 is an intro to WCM in 2010
 Wrox SharePoint 2007 Web Content Management
Online
 Web content management in SharePoint Server 2010
http://technet.microsoft.com/en-us/sharepoint/ff601874.aspx
 SharePoint 2010 for Internet sites implementers' course
http://technet.microsoft.com/en-US/sharepoint/hh126807
26 | SharePoint Saturday St. Louis 2012
Housekeeping
 Follow SharePoint Saturday
Ozarks on Twitter @SPSOzarks
hashtag #SPSOzarks
 Stop by and thank our sponsors
for making this event possible!
 Fill out and turn in evaluation
forms to be eligible for the end-
of-day raffle. You must be
present to win.
 Don’t miss “This Modern
Station” tonight at Waxy
O’Shea’s!
Thanks to Our Sponsors!
Platinum
Thanks to Our Sponsors!

Weitere Àhnliche Inhalte

Was ist angesagt?

SharePoint Quick Reference Card
SharePoint Quick Reference CardSharePoint Quick Reference Card
SharePoint Quick Reference Card
Tom Vorves
 
Empower The Power User by @KerriAbraham and @SharePointWendy
Empower The Power User by @KerriAbraham and @SharePointWendyEmpower The Power User by @KerriAbraham and @SharePointWendy
Empower The Power User by @KerriAbraham and @SharePointWendy
Wendy Neal
 
SharePoint Document Sets
SharePoint Document SetsSharePoint Document Sets
SharePoint Document Sets
Regroove
 
Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013
Thomas Daly
 

Was ist angesagt? (20)

Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
 
SharePoint Quick Reference Card
SharePoint Quick Reference CardSharePoint Quick Reference Card
SharePoint Quick Reference Card
 
Branding sharepoint project
Branding sharepoint projectBranding sharepoint project
Branding sharepoint project
 
Understand the SharePoint Basics
Understand the SharePoint BasicsUnderstand the SharePoint Basics
Understand the SharePoint Basics
 
SharePoint 2013 Site Administration Guide
SharePoint 2013 Site Administration GuideSharePoint 2013 Site Administration Guide
SharePoint 2013 Site Administration Guide
 
Empower The Power User by @KerriAbraham and @SharePointWendy
Empower The Power User by @KerriAbraham and @SharePointWendyEmpower The Power User by @KerriAbraham and @SharePointWendy
Empower The Power User by @KerriAbraham and @SharePointWendy
 
SharePoint Development(Lesson 5)
SharePoint Development(Lesson 5)SharePoint Development(Lesson 5)
SharePoint Development(Lesson 5)
 
SharePoint Document Sets
SharePoint Document SetsSharePoint Document Sets
SharePoint Document Sets
 
Introduction to SharePoint 2013 Out of the box Webparts
Introduction to SharePoint 2013 Out of the box WebpartsIntroduction to SharePoint 2013 Out of the box Webparts
Introduction to SharePoint 2013 Out of the box Webparts
 
Exploring the New Search in SharePoint 2013 - What can you do now?
Exploring the New Search in SharePoint 2013 - What can you do now?Exploring the New Search in SharePoint 2013 - What can you do now?
Exploring the New Search in SharePoint 2013 - What can you do now?
 
Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013
 
Build Killer Visuals with SharePoint 2013 Search & Display Templates
Build Killer Visuals with SharePoint 2013 Search & Display TemplatesBuild Killer Visuals with SharePoint 2013 Search & Display Templates
Build Killer Visuals with SharePoint 2013 Search & Display Templates
 
Share Point 2010 Site Solutions – Knowledge Base
Share Point 2010 Site Solutions – Knowledge BaseShare Point 2010 Site Solutions – Knowledge Base
Share Point 2010 Site Solutions – Knowledge Base
 
User Centered Design and SharePoint Publishing Portals
User Centered Design and SharePoint Publishing PortalsUser Centered Design and SharePoint Publishing Portals
User Centered Design and SharePoint Publishing Portals
 
SPSRIC - A SharePoint Designer’s Lessons Learned
SPSRIC - A SharePoint Designer’s Lessons Learned SPSRIC - A SharePoint Designer’s Lessons Learned
SPSRIC - A SharePoint Designer’s Lessons Learned
 
SharePoint for Beginners
SharePoint for BeginnersSharePoint for Beginners
SharePoint for Beginners
 
SPC Master Power User SharePoint & Office 365
SPC Master Power User SharePoint & Office 365SPC Master Power User SharePoint & Office 365
SPC Master Power User SharePoint & Office 365
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for Business
 
SharePoint for Project Management (2016)
SharePoint for Project Management (2016)SharePoint for Project Management (2016)
SharePoint for Project Management (2016)
 
SharePoint Training
SharePoint TrainingSharePoint Training
SharePoint Training
 

Andere mochten auch

Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
Corey Roth
 
ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...
ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...
ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...
sveta7940
 
GIRI RESUME 2016
GIRI RESUME 2016GIRI RESUME 2016
GIRI RESUME 2016
Giri Ram
 
Websphere portal vs. liferay by gartner v1.0
Websphere portal vs. liferay by gartner v1.0Websphere portal vs. liferay by gartner v1.0
Websphere portal vs. liferay by gartner v1.0
Marco Cimino
 

Andere mochten auch (20)

Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
 
ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...
ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...
ĐŁŃ€ĐŸĐș:"ЕлДĐșŃ‚Ń€ĐžŃ‡ĐœĐ° ĐżŃ€ĐŸĐČŃ–ĐŽĐœŃ–ŃŃ‚ŃŒ ĐŒĐ°Ń‚Đ”Ń€Ń–Đ°Đ»Ń–ĐČ: ĐżŃ€ĐŸĐČŃ–ĐŽÂŹĐœĐžĐșĐž, ĐœĐ°ĐżŃ–ĐČĐżŃ€ĐŸĐČŃ–ĐŽĐœĐžĐșĐž та ЎіДл...
 
Common Hiring Mistakes
Common Hiring MistakesCommon Hiring Mistakes
Common Hiring Mistakes
 
Sms
SmsSms
Sms
 
elPeriĂłdico MIENTE 1
elPeriĂłdico MIENTE 1elPeriĂłdico MIENTE 1
elPeriĂłdico MIENTE 1
 
ĐĄŃ‚Đ°ĐœĐŽĐ°Ń€Ń‚ ĐŽĐ”ŃŃ‚Đ”Đ»ŃŒĐœĐŸŃŃ‚Đž ĐŸŃ€ĐłĐ°ĐœĐŸĐČ ĐžŃĐżĐŸĐ»ĐœĐžŃ‚Đ”Đ»ŃŒĐœĐŸĐč ĐČластО ŃŃƒĐ±ŃŠĐ”Đșта Đ ĐŸŃŃĐžĐčсĐșĐŸĐč ЀДЎДр...
ĐĄŃ‚Đ°ĐœĐŽĐ°Ń€Ń‚ ĐŽĐ”ŃŃ‚Đ”Đ»ŃŒĐœĐŸŃŃ‚Đž ĐŸŃ€ĐłĐ°ĐœĐŸĐČ ĐžŃĐżĐŸĐ»ĐœĐžŃ‚Đ”Đ»ŃŒĐœĐŸĐč ĐČластО ŃŃƒĐ±ŃŠĐ”Đșта Đ ĐŸŃŃĐžĐčсĐșĐŸĐč ЀДЎДр...ĐĄŃ‚Đ°ĐœĐŽĐ°Ń€Ń‚ ĐŽĐ”ŃŃ‚Đ”Đ»ŃŒĐœĐŸŃŃ‚Đž ĐŸŃ€ĐłĐ°ĐœĐŸĐČ ĐžŃĐżĐŸĐ»ĐœĐžŃ‚Đ”Đ»ŃŒĐœĐŸĐč ĐČластО ŃŃƒĐ±ŃŠĐ”Đșта Đ ĐŸŃŃĐžĐčсĐșĐŸĐč ЀДЎДр...
ĐĄŃ‚Đ°ĐœĐŽĐ°Ń€Ń‚ ĐŽĐ”ŃŃ‚Đ”Đ»ŃŒĐœĐŸŃŃ‚Đž ĐŸŃ€ĐłĐ°ĐœĐŸĐČ ĐžŃĐżĐŸĐ»ĐœĐžŃ‚Đ”Đ»ŃŒĐœĐŸĐč ĐČластО ŃŃƒĐ±ŃŠĐ”Đșта Đ ĐŸŃŃĐžĐčсĐșĐŸĐč ЀДЎДр...
 
GIRI RESUME 2016
GIRI RESUME 2016GIRI RESUME 2016
GIRI RESUME 2016
 
Buying a Fishing Kayak
Buying a Fishing KayakBuying a Fishing Kayak
Buying a Fishing Kayak
 
Usa promotional tour
Usa promotional tour Usa promotional tour
Usa promotional tour
 
Dreampoint production
Dreampoint productionDreampoint production
Dreampoint production
 
drop box tutorial
drop box tutorialdrop box tutorial
drop box tutorial
 
Bai dich sach power pneumatics 2
Bai dich sach power pneumatics 2Bai dich sach power pneumatics 2
Bai dich sach power pneumatics 2
 
SharePoint 2013 - Search Driven Publishing
SharePoint 2013 - Search Driven PublishingSharePoint 2013 - Search Driven Publishing
SharePoint 2013 - Search Driven Publishing
 
BinĂĄrio sc sp
BinĂĄrio sc   spBinĂĄrio sc   sp
BinĂĄrio sc sp
 
Yes/ No Questions (Part 1)
Yes/ No Questions (Part 1)Yes/ No Questions (Part 1)
Yes/ No Questions (Part 1)
 
Websphere portal vs. liferay by gartner v1.0
Websphere portal vs. liferay by gartner v1.0Websphere portal vs. liferay by gartner v1.0
Websphere portal vs. liferay by gartner v1.0
 
SharePoint 2013 for Administrators and IT Pro's
SharePoint 2013 for Administrators and IT Pro'sSharePoint 2013 for Administrators and IT Pro's
SharePoint 2013 for Administrators and IT Pro's
 
The 1st Serafin Hilvano Oration 2015
The 1st Serafin Hilvano Oration 2015The 1st Serafin Hilvano Oration 2015
The 1st Serafin Hilvano Oration 2015
 
Infrastructure Best Practices for SharePoint On-Premises presented by Michael...
Infrastructure Best Practices for SharePoint On-Premises presented by Michael...Infrastructure Best Practices for SharePoint On-Premises presented by Michael...
Infrastructure Best Practices for SharePoint On-Premises presented by Michael...
 
Core SharePoint 2013 Concepts
Core SharePoint 2013 ConceptsCore SharePoint 2013 Concepts
Core SharePoint 2013 Concepts
 

Ähnlich wie SharePoint Publishing 101

Sharepoint tips and tricks
Sharepoint tips and tricksSharepoint tips and tricks
Sharepoint tips and tricks
Jeff Wisniewski
 
TID Chapter 8 Web Page Development
TID Chapter 8 Web Page DevelopmentTID Chapter 8 Web Page Development
TID Chapter 8 Web Page Development
WanBK Leo
 
Branding 101
Branding 101Branding 101
Branding 101
D'arce Hess
 
Sharepoint referenceportal
Sharepoint referenceportalSharepoint referenceportal
Sharepoint referenceportal
mulcahey99
 
Web publishing
Web publishingWeb publishing
Web publishing
Kanav Sood
 

Ähnlich wie SharePoint Publishing 101 (20)

SharePoint 2010 Basics for newbies
SharePoint 2010 Basics for newbiesSharePoint 2010 Basics for newbies
SharePoint 2010 Basics for newbies
 
Share Point For Beginners V1
Share Point For Beginners V1Share Point For Beginners V1
Share Point For Beginners V1
 
Moss introduction-session02
Moss introduction-session02Moss introduction-session02
Moss introduction-session02
 
SharePoint 2010 Introduction
SharePoint 2010 IntroductionSharePoint 2010 Introduction
SharePoint 2010 Introduction
 
Sharepoint tips and tricks
Sharepoint tips and tricksSharepoint tips and tricks
Sharepoint tips and tricks
 
Advanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site AdministrationAdvanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site Administration
 
Branding & Design Opportunities/Challenges with SharePoint 2013
Branding & Design Opportunities/Challenges with SharePoint 2013Branding & Design Opportunities/Challenges with SharePoint 2013
Branding & Design Opportunities/Challenges with SharePoint 2013
 
Envision IT - SharePoint 2013 Web Content Managment
Envision IT - SharePoint 2013 Web Content Managment Envision IT - SharePoint 2013 Web Content Managment
Envision IT - SharePoint 2013 Web Content Managment
 
Sps redmond 2014 deck
Sps redmond 2014 deckSps redmond 2014 deck
Sps redmond 2014 deck
 
TID Chapter 8 Web Page Development
TID Chapter 8 Web Page DevelopmentTID Chapter 8 Web Page Development
TID Chapter 8 Web Page Development
 
SharePoint 2013 Web Content Management for Developers TSPUG
SharePoint 2013 Web Content Management for Developers TSPUGSharePoint 2013 Web Content Management for Developers TSPUG
SharePoint 2013 Web Content Management for Developers TSPUG
 
SharePoint 2013 Web Content Management for Developers HSPUG
SharePoint 2013 Web Content Management for Developers HSPUGSharePoint 2013 Web Content Management for Developers HSPUG
SharePoint 2013 Web Content Management for Developers HSPUG
 
Branding 101
Branding 101Branding 101
Branding 101
 
Sharepoint referenceportal
Sharepoint referenceportalSharepoint referenceportal
Sharepoint referenceportal
 
Going from Classic to Modern. 10 Things you must know before you commit
Going from Classic to Modern. 10 Things you must know before you commitGoing from Classic to Modern. 10 Things you must know before you commit
Going from Classic to Modern. 10 Things you must know before you commit
 
Spsat nyc19 190621150118
Spsat nyc19 190621150118Spsat nyc19 190621150118
Spsat nyc19 190621150118
 
Share point review qustions
Share point review qustionsShare point review qustions
Share point review qustions
 
Web publishing
Web publishingWeb publishing
Web publishing
 
Share point 2013 Building Websites
Share point 2013 Building WebsitesShare point 2013 Building Websites
Share point 2013 Building Websites
 
The A to Z of Building a Responsive SharePoint Site with Bootstrap
The A to Z of Building a Responsive SharePoint Site with BootstrapThe A to Z of Building a Responsive SharePoint Site with Bootstrap
The A to Z of Building a Responsive SharePoint Site with Bootstrap
 

Mehr von Becky Bertram

Mehr von Becky Bertram (13)

Introduction to Communication Sites
Introduction to Communication SitesIntroduction to Communication Sites
Introduction to Communication Sites
 
Microsoft Graph
Microsoft GraphMicrosoft Graph
Microsoft Graph
 
SharePoint 2010 Tools in Visual Studio 2010
SharePoint 2010 Tools in Visual Studio 2010SharePoint 2010 Tools in Visual Studio 2010
SharePoint 2010 Tools in Visual Studio 2010
 
How do i connect to that
How do i connect to thatHow do i connect to that
How do i connect to that
 
SharePoint and Open XML
SharePoint and Open XMLSharePoint and Open XML
SharePoint and Open XML
 
Help! I've got a share point site! Now What?
Help! I've got a share point site! Now What?Help! I've got a share point site! Now What?
Help! I've got a share point site! Now What?
 
Developing retention rules that work
Developing retention rules that workDeveloping retention rules that work
Developing retention rules that work
 
My First SharePoint Online PowerApp
My First SharePoint Online PowerAppMy First SharePoint Online PowerApp
My First SharePoint Online PowerApp
 
Share point development 101
Share point development 101Share point development 101
Share point development 101
 
So you’re building an intranet
So you’re building an intranetSo you’re building an intranet
So you’re building an intranet
 
Microsoft Exam 70-331 Exam Cram Study Guide
Microsoft Exam 70-331 Exam Cram Study GuideMicrosoft Exam 70-331 Exam Cram Study Guide
Microsoft Exam 70-331 Exam Cram Study Guide
 
Exam Cram for 70-488: Developing Microsoft SharePoint Server 2013 Core Solutions
Exam Cram for 70-488: Developing Microsoft SharePoint Server 2013 Core SolutionsExam Cram for 70-488: Developing Microsoft SharePoint Server 2013 Core Solutions
Exam Cram for 70-488: Developing Microsoft SharePoint Server 2013 Core Solutions
 
Social Features of SharePoint 2013: Enhancing Productivity
Social Features of SharePoint 2013: Enhancing ProductivitySocial Features of SharePoint 2013: Enhancing Productivity
Social Features of SharePoint 2013: Enhancing Productivity
 

KĂŒrzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

KĂŒrzlich hochgeladen (20)

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

SharePoint Publishing 101

  • 1. SharePoint Publishing 101 Becky Bertram Owner, Savvy Technical Solutions SharePoint MVP, Microsoft Certified Trainer, MCTS, MCSD, MCPD, MCITP
  • 2. Web Content Management WCM focuses on the presentation of online textual and graphical content.
  • 3. "Newspaper Story" 1950 Encyclopaedia Britannica Films Abridged from its full version http://www.youtube.com/watch?v=G8cCS3o62iI
  • 4. Tasks Involved in the Publishing Process  Writing the content  Editing the content  Editing the content for grammar and spelling  Checking a proof/draft version  Approving  Contributing images to the story  Deciding what goes on the front page
  • 5. People Involved in the Publishing Process Paper SharePoint Writer Contributor Copy Editor Approver City Editor Approver Proof Reader Approver Photo Lab Technician Graphic Designer Press Room Technicians SharePoint Farm Admin Newspaper Editor SharePoint Site Collection Admin
  • 6. Publishing Site Collection  A site collection is a “tree” of sites. A subsite is a site within that tree of sites.  For instance, your site collection might have a URL of http://www.site.com/. You might keep all your news articles in a subsite called “News”, with a URL of http://www.site.com/News.  A subsite can contain subsites. For instance you might have a “Company News” subsite inside your “News” subsite. It might have a URL like this: http://www.site.com/News/CompanyNews  SharePoint has various site templates. To create a WCM- focused site, you typically create your site collection using the “Publishing Portal” template.  That’s why we call it a “Publishing” site.
  • 8. Step 1: Decide on Content  What kind of page do I want to create? News story? Department homepage? Product detail page? About Us page?  What are the pictures I want on the page?  Will I be linking to any documents from this page?  Is there anyone I need to talk to get extra resources (such as images or documents) created?
  • 9. Step 2: Upload Dependent Content  A library is a SharePoint term for a location to store electronic documents within a site collection.  Different libraries typically hold different kinds of documents. An Image Library typically stores images and videos, while a Document Library stores documents such as Word, Excel, and PDF files, etc.  A Publishing site collection has a Site Collection Images library and a Site Collection Documents library in the top level site. These are used for storing documents used throughout the site collection.  Each subsite has its own Images and Documents libraries. These are used for storing items relevant for that particular subsite.
  • 10. Step 3: Create your Page  Where do you want to create your page?  A page gets created in whatever subsite you’re in when you create the page.  What do you want your page’s URL to be?  All web pages you create go inside a library called Pages. Thus, your “physical” URL will always have this formula: SiteCollectionURL + Web Hierarchy URL + /Pages/ + Page URL http://www.site.com/AboutUs/BoardOfDirectors/Pages/JohnSmith.aspx  What is the title of the page?  This will show up in site navigation as well as on the page.
  • 11. Step 4: Choose a Page Layout  A content type describes the kind of page you’re creating.  News article: Title, Article Date, Byline, Page Content, Image, Caption  Product: Title, Image, Thumbnail Image, Product Number  Each kind of content could have more than one visual presentation on the page.  Article with Image on Left  Article with Image on right  Article with No Image  Product with Large Image  Product with Thumbnail Image  Each visual presentation is called a page layout.
  • 12. Step 5: Add Content to Your Page  Add text, images, and hyperlinks to your page  You might also add web parts to your page. A web part is a discrete unit of functionality that can be dropped on a page.  You’ll use the SharePoint ribbon to format your content, just like you would if you were using other Office products.  You can preview what your page will look like.  If you want your page to become visible on the site at a particular day and time, or disappear from the site at a particular moment, you can set that, too.
  • 13. Step 6: Check in Your Page  By default, pages can be checked out and check in. If you have a page checked out, no one else can see the changes you are making.  By default, pages have “minor” and “major” versioning.  A minor version is a decimal number, such 1.1  A major version is a whole number, such as 2.0  A page that has been checked in but still has a minor number is considered a draft. It can be seen by other authors, but not end users.  Once a page has been approved, it’s incremented to the next whole number
  • 14. Step 7: Approval and Go Live  Once you feel your page is ready to be published, you submit it for approval.  By default, people who are members of the SharePoint Approvers group can approve the page.  Serial vs. Parallel  All users in group vs. group approval  Once the page has gone through all stages of approval, it’s live on the site.
  • 16. Understanding Navigation  Navigation is dynamically generated based on your site hierarchy and your publishing pages.  In SharePoint “15”, navigation is built using the Managed Metadata Service. This means the navigation is built using keywords, and is not tied so much to a page’s location in the site collection hierarchy.  The global navigation refers to the “top nav”. This navigation is usually static, in the sense that every page has the same items at the top of the page.  The current navigation refers to the navigation on the side of the page (usually on the left) that is contextual, meaning it changes based on a user’s location in the site.
  • 17. Modifying the Navigation  Links in the navigation (both global and current) are based on the pages and/or subsites in your site collection hierarchy.  For example, you have a subsite called “Products” with various kinds of “Product” pages inside it.  In SharePoint 15, you can alternatively build a navigation structure, then “tag” different pages so they will show up at that location in the hierarchy.  For example, you create a term in your navigation structure called “Product”, then you tag all the pages you want to show up in that node with the “Product” keyword.  This provides a way for navigation to not be tied to physical location.  There are security implications as to how you structure your site collection. Security needs do not always mirror taxonomy needs.
  • 18. Understanding Dynamic Queries  In Web 1.0, if you wanted a link to a new Web page, you had to work with 2 pages: the new page you created, and then the page that contained the link. Broken links resulted when the location of the new page changed, or the page was deleted.  By generating dynamic queries, your content will dynamically change based on the publication of new content. There’s no need to ever “hard code” a link to another page if you can retrieve it dynamically.  Example of this is displaying the 5 most recent news articles on the homepage of your site.  Query results can have their look and feel modified
  • 19. SharePoint 2010 Content Query Web Part Look and feel controlled by modifying XSL style sheet(s)
  • 20. SharePoint 15 Content Search  Same idea as Content Query, but queries the search index instead of the SQL database where the content is stored  Better performance, but not live data; query triggers immediate indexing, however. (MS special sauce)  Look and feel modified by display templates
  • 21. Understanding Master Pages  Allows the construction, and later modification, of common page elements in a central location. Often times the page header, top navigation, side navigation, and footer are included in the master page.  The Master Page is built using HTML and Cascading Style Sheets (CSS).  Designers can build Master Pages that don’t look like a typical SharePoint site.  Can be built by developers using Visual Studio and deployed by site administrator.  In SharePoint 2010, can be built using SharePoint Designer  In SharePoint 15, can be built in another design tool and uploaded to SharePoint.
  • 22. SharePoint 15 Design Changes  You can import a design package  You can pick a “pre-installed look”, much like you could pick a theme for a blog or similar public site.
  • 23. Examples of Publishing Sites on the Web  Kroger.com  Energizer.com  Recovery.gov  VolvoCars.com  Swiss.com (Swiss Air)  Calphalon.com  For a larger list, check out http://www.topsharepoint.com/category/top-sites
  • 24. Advanced Topics  Multi-lingual sites  Content Deployment  Metadata  Search  Performance and Caching
  • 25. Resources Books  Wrox SharePoint Six-in-One Chapter 9 is an intro to WCM in 2010  Wrox SharePoint 2007 Web Content Management Online  Web content management in SharePoint Server 2010 http://technet.microsoft.com/en-us/sharepoint/ff601874.aspx  SharePoint 2010 for Internet sites implementers' course http://technet.microsoft.com/en-US/sharepoint/hh126807
  • 26. 26 | SharePoint Saturday St. Louis 2012 Housekeeping  Follow SharePoint Saturday Ozarks on Twitter @SPSOzarks hashtag #SPSOzarks  Stop by and thank our sponsors for making this event possible!  Fill out and turn in evaluation forms to be eligible for the end- of-day raffle. You must be present to win.  Don’t miss “This Modern Station” tonight at Waxy O’Shea’s!
  • 27. Thanks to Our Sponsors! Platinum
  • 28. Thanks to Our Sponsors!

Hinweis der Redaktion

  1. What are some things that SharePoint does well?
  2. For this presentation we’re ignoring document management, connections to back-end data sources, social networks, etc. The focus of SharePoint publishing sites is on WCM. SharePoint Publishing sites are used for both external/public-facing sites, as well as for Intranet sites.
  3. What are some of the parts of the publishing process you saw in the film? Which do you think transfer to the electronic age?
  4. Notice that in the movie, there were at least 3 editors: the one who chose the pictures, the copy editor, and the proof editor. In SharePoint, you can have multiple stages of approval, too.