-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements changes surrounding a 4.x release of the SharePoint Connec…
- Loading branch information
1 parent
5e731ec
commit 26b7fc3
Showing
71 changed files
with
1,207 additions
and
394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/bcvc4sp.Addin/BrightcoveExperienceWebPart/Elements.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ClientWebPart Name="BrightcoveExperience" Title="Brightcove Experience" Description="Adds a Brightcove Experience onto classic and modern pages." DefaultWidth="640" DefaultHeight="640"> | ||
|
||
<!-- Content element identifies the location of the page that will render inside the client web part | ||
Properties are referenced on the query string using the pattern _propertyName_ | ||
Example: Src="~appWebUrl/Pages/ClientWebPart1.aspx?Property1=_property1_" --> | ||
<Content Type="html" Src="~appWebUrl/Pages/AppPartPage.aspx?{StandardTokens}&part=experience&IsDlg=1&wpId=_WPID_&wpq=_WPQ_&editmode=_editMode_" /> | ||
|
||
<!-- Define properties in the Properties element. | ||
Remember to put Property Name on the Src attribute of the Content element above. --> | ||
<Properties /> | ||
|
||
</ClientWebPart> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcoveExperienceWebPart/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ClientWebPart" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="AppPackage" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Type="AppPackage" /> | ||
</Files> | ||
</ProjectItem> |
17 changes: 17 additions & 0 deletions
17
src/bcvc4sp.Addin/BrightcoveExperimentalWebPart/Elements.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ClientWebPart Name="BrightcoveExperimentalWebPart" Title="Brightcove Experimental WebPart" Description="Brightcove Web Part that renders content at the specified url as its contents"> | ||
|
||
<!-- Content element identifies the location of the page that will render inside the client web part | ||
Properties are referenced on the query string using the pattern _propertyName_ | ||
Example: Src="~appWebUrl/Pages/ClientWebPart1.aspx?Property1=_property1_" --> | ||
<Content Type="html" Src="~appWebUrl/Pages/Experimental.aspx?{StandardTokens}&IsDlg=1&wpId=_WPID_&wpq=_WPQ_&editmode=_editMode_&contentUrl=_contentUrl_" /> | ||
|
||
<!-- Define properties in the Properties element. | ||
Remember to put Property Name on the Src attribute of the Content element above. --> | ||
<Properties> | ||
<Property Name="contentUrl" Type="string" RequiresDesignerPermission="true" DefaultValue="" WebDisplayName="The url of the content to render" WebCategory="Brightcove" /> | ||
</Properties> | ||
|
||
</ClientWebPart> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcoveExperimentalWebPart/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ClientWebPart" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="AppPackage" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Type="AppPackage" /> | ||
</Files> | ||
</ProjectItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ClientWebPart Name="BrightcoveVideoWebPart" Title="Brightcove Video WebPart" Description="Brightcove Web Part to embed video content onto a web part page." DefaultWidth="640" DefaultHeight="360"> | ||
|
||
<!-- Content element identifies the location of the page that will render inside the client web part | ||
Properties are referenced on the query string using the pattern _propertyName_ | ||
Example: Src="~appWebUrl/Pages/ClientWebPart1.aspx?Property1=_property1_" --> | ||
<Content Type="html" Src="~appWebUrl/Pages/Default.aspx?{StandardTokens}&part=player&IsDlg=1&wpId=_WPID_&editmode=_editMode_&accountId=_accountId_&playerId=_playerId_&videoId=_modeId_&playerMode=_playerMode_&autoplay=_autoplay_" /> | ||
|
||
<!-- Define properties in the Properties element. | ||
Remember to put Property Name on the Src attribute of the Content element above. --> | ||
<Properties> | ||
<Property Name="accountId" Type="string" RequiresDesignerPermission="true" DefaultValue="" WebDisplayName="The id of the account that contains the video content" WebCategory="Brightcove" /> | ||
<Property Name="playerId" Type="string" RequiresDesignerPermission="true" DefaultValue="" WebDisplayName="The id of the player to use" WebCategory="Brightcove" /> | ||
<Property Name="playerMode" Type="enum" RequiresDesignerPermission="true" DefaultValue="Video" WebDisplayName="The mode of the player - video or playlist" WebCategory="Brightcove"> | ||
<EnumItems> | ||
<EnumItem Value="Video" WebDisplayName="Video" /> | ||
<EnumItem Value="Playlist" WebDisplayName="Playlist" /> | ||
</EnumItems> | ||
</Property> | ||
<Property Name="modeId" Type="string" RequiresDesignerPermission="true" DefaultValue="" WebDisplayName="The id of the video or playlist to display" WebCategory="Brightcove" /> | ||
<Property Name="autoplay" Type="boolean" RequiresDesignerPermission="true" DefaultValue="false" WebDisplayName="Indicates if the video/playlist should autoplay" WebCategory="Brightcove" /> | ||
<Property Name="muted" Type="boolean" RequiresDesignerPermission="true" DefaultValue="false" WebDisplayName="Indicates if the video/playlist should be muted" WebCategory="Brightcove" /> | ||
</Properties> | ||
|
||
</ClientWebPart> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcovePlayerWebPart/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ClientWebPart" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="AppPackage" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Type="AppPackage" /> | ||
</Files> | ||
</ProjectItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ClientWebPart Name="BrightcovePlaylist" Title="Brightcove Playlist" Description="Adds a Brightcove Playlist onto classic and modern pages." DefaultWidth="640" DefaultHeight="640"> | ||
|
||
<!-- Content element identifies the location of the page that will render inside the client web part | ||
Properties are referenced on the query string using the pattern _propertyName_ | ||
Example: Src="~appWebUrl/Pages/ClientWebPart1.aspx?Property1=_property1_" --> | ||
<Content Type="html" Src="~appWebUrl/Pages/AppPartPage.aspx?{StandardTokens}&part=playlist&IsDlg=1&wpId=_WPID_&wpq=_WPQ_&editmode=_editMode_" /> | ||
|
||
<!-- Define properties in the Properties element. | ||
Remember to put Property Name on the Src attribute of the Content element above. --> | ||
<Properties/> | ||
|
||
</ClientWebPart> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcovePlaylistWebPart/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ClientWebPart" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="AppPackage" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Type="AppPackage" /> | ||
</Files> | ||
</ProjectItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ListInstance Title="BrightcoveSettings" OnQuickLaunch="FALSE" TemplateType="101" FeatureId="00bfea71-e717-4e80-aa17-d0c71b360101" Url="BrightcoveSettings" Description="Contains Brightcove App settings and configuration." Hidden="TRUE"></ListInstance> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcoveSettings/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ListInstance" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="Web, Site" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Target="BrightcoveSettings\" Type="ElementManifest" /> | ||
</Files> | ||
</ProjectItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ClientWebPart Name="BrightcoveVideo" Title="Brightcove Video" Description="Adds a Brightcove Video onto classic and modern pages." DefaultWidth="640" DefaultHeight="640"> | ||
|
||
<!-- Content element identifies the location of the page that will render inside the client web part | ||
Properties are referenced on the query string using the pattern _propertyName_ | ||
Example: Src="~appWebUrl/Pages/ClientWebPart1.aspx?Property1=_property1_" --> | ||
<Content Type="html" Src="~appWebUrl/Pages/AppPartPage.aspx?{StandardTokens}&part=video&IsDlg=1&wpId=_WPID_&wpq=_WPQ_&editmode=_editMode_" /> | ||
|
||
<!-- Define properties in the Properties element. | ||
Remember to put Property Name on the Src attribute of the Content element above. --> | ||
<Properties/> | ||
|
||
</ClientWebPart> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcoveVideoWebPart/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ClientWebPart" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="AppPackage" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Type="AppPackage" /> | ||
</Files> | ||
</ProjectItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
<ListInstance Title="BrightcoveWebPartData" OnQuickLaunch="FALSE" TemplateType="101" FeatureId="00bfea71-e717-4e80-aa17-d0c71b360101" Url="BrightcoveWebPartData" Description="Contains Brightcove Web Part settings and configuration." Hidden="TRUE"></ListInstance> | ||
</Elements> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/BrightcoveWebPartData/SharePointProjectItem.spdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ProjectItem Type="Microsoft.VisualStudio.SharePoint.ListInstance" DefaultFile="Elements.xml" SupportedTrustLevels="All" SupportedDeploymentScopes="Web, Site" xmlns="http://schemas.microsoft.com/VisualStudio/2010/SharePointTools/SharePointProjectItemModel"> | ||
<Files> | ||
<ProjectItemFile Source="Elements.xml" Target="BrightcoveWebPartData\" Type="ElementManifest" /> | ||
</Files> | ||
</ProjectItem> |
3 changes: 3 additions & 0 deletions
3
src/bcvc4sp.Addin/Features/BrightcoveAddinParts/BrightcoveAddinParts.Template.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Feature xmlns="http://schemas.microsoft.com/sharepoint/"> | ||
</Feature> |
6 changes: 6 additions & 0 deletions
6
src/bcvc4sp.Addin/Features/BrightcoveAddinParts/BrightcoveAddinParts.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<feature xmlns:dm0="http://schemas.microsoft.com/VisualStudio/2008/DslTools/Core" dslVersion="1.0.0.0" Id="85443e0f-f032-4e99-ab20-fa7c773e378b" description="Contains Add-in Parts for Videos/Playlists/Experiences" featureId="85443e0f-f032-4e99-ab20-fa7c773e378b" imageUrl="" solutionId="00000000-0000-0000-0000-000000000000" title="Brightcove Add-in Parts" version="" deploymentPath="$SharePoint.Project.FileNameWithoutExtension$_$SharePoint.Feature.FileNameWithoutExtension$" xmlns="http://schemas.microsoft.com/VisualStudio/2008/SharePointTools/FeatureModel"> | ||
<projectItems> | ||
<projectItemReference itemId="f7172cff-8287-48dd-9e0e-978e4416ad7b" /> | ||
</projectItems> | ||
</feature> |
6 changes: 5 additions & 1 deletion
6
...cvc4sp.Addin/Features/BrightcoveRibbonCustomActions/BrightcoveRibbonCustomActions.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<feature xmlns:dm0="http://schemas.microsoft.com/VisualStudio/2008/DslTools/Core" dslVersion="1.0.0.0" Id="4d304f08-d2ec-45dd-a12d-df752489c24b" description="Contains Ribbon Custom Actions that appear when Editing Pages to allow for easy embeds of Brightcove content." featureId="4d304f08-d2ec-45dd-a12d-df752489c24b" imageUrl="" solutionId="00000000-0000-0000-0000-000000000000" title="Brightcove Ribbon Custom Actions" version="" deploymentPath="$SharePoint.Project.FileNameWithoutExtension$_$SharePoint.Feature.FileNameWithoutExtension$" xmlns="http://schemas.microsoft.com/VisualStudio/2008/SharePointTools/FeatureModel" /> | ||
<feature xmlns:dm0="http://schemas.microsoft.com/VisualStudio/2008/DslTools/Core" dslVersion="1.0.0.0" Id="4d304f08-d2ec-45dd-a12d-df752489c24b" activateOnDefault="false" description="Contains Ribbon Custom Actions that appear when Editing Pages to allow for easy embeds of Brightcove content." featureId="4d304f08-d2ec-45dd-a12d-df752489c24b" imageUrl="" solutionId="00000000-0000-0000-0000-000000000000" title="Brightcove Ribbon Custom Actions" version="" deploymentPath="$SharePoint.Project.FileNameWithoutExtension$_$SharePoint.Feature.FileNameWithoutExtension$" xmlns="http://schemas.microsoft.com/VisualStudio/2008/SharePointTools/FeatureModel"> | ||
<projectItems> | ||
<projectItemReference itemId="81e210bf-25e9-4b1c-b8d6-e6af9ab9aaa9" /> | ||
</projectItems> | ||
</feature> |
1 change: 1 addition & 0 deletions
1
...tures/BrightcoveVideoConnectorForSharePoint/BrightcoveVideoConnectorForSharePoint.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.