├── Android ├── Create New Page │ ├── .metadata │ │ ├── .lock │ │ ├── .plugins │ │ │ ├── org.eclipse.cdt.core │ │ │ │ └── .log │ │ │ ├── org.eclipse.cdt.make.core │ │ │ │ ├── specs.c │ │ │ │ └── specs.cpp │ │ │ ├── org.eclipse.jdt.core │ │ │ │ ├── javaLikeNames.txt │ │ │ │ ├── 318813597.index │ │ │ │ ├── 77262011.index │ │ │ │ ├── 983067953.index │ │ │ │ ├── 1568063782.index │ │ │ │ ├── 1956723311.index │ │ │ │ ├── 2382626706.index │ │ │ │ ├── 2608976214.index │ │ │ │ ├── externalLibsTimeStamps │ │ │ │ ├── savedIndexNames.txt │ │ │ │ └── .org.eclipse.jdt.core.external.folders │ │ │ │ │ └── .project │ │ │ ├── org.eclipse.core.runtime │ │ │ │ └── .settings │ │ │ │ │ ├── org.eclipse.ui.prefs │ │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ │ │ ├── org.eclipse.debug.core.prefs │ │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ │ └── org.eclipse.cdt.debug.core.prefs │ │ │ ├── org.eclipse.core.resources │ │ │ │ └── .snap │ │ │ ├── org.eclipse.jdt.launching │ │ │ │ ├── .install.xml │ │ │ │ └── libraryInfos.xml │ │ │ ├── org.eclipse.ui.workbench │ │ │ │ └── workingsets.xml │ │ │ └── org.eclipse.debug.ui │ │ │ │ └── launchConfigurationHistory.xml │ │ └── version.ini │ ├── LiveSDK-for-Android-master │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── sample │ │ │ ├── res │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_image.png │ │ │ │ │ ├── text_x_preview.png │ │ │ │ │ ├── audio_x_generic.png │ │ │ │ │ ├── image_x_generic.png │ │ │ │ │ └── video_x_generic.png │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_image.png │ │ │ │ │ ├── text_x_preview.png │ │ │ │ │ ├── audio_x_generic.png │ │ │ │ │ ├── image_x_generic.png │ │ │ │ │ └── video_x_generic.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_image.png │ │ │ │ │ ├── text_x_preview.png │ │ │ │ │ ├── audio_x_generic.png │ │ │ │ │ ├── image_x_generic.png │ │ │ │ │ └── video_x_generic.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_image.png │ │ │ │ │ ├── audio_x_generic.png │ │ │ │ │ ├── image_x_generic.png │ │ │ │ │ ├── text_x_preview.png │ │ │ │ │ └── video_x_generic.png │ │ │ │ └── layout │ │ │ │ │ ├── view_contacts_list_item.xml │ │ │ │ │ ├── view_contacts.xml │ │ │ │ │ ├── skydrive.xml │ │ │ │ │ ├── file_picker.xml │ │ │ │ │ ├── file_picker_list_item.xml │ │ │ │ │ ├── view_profile.xml │ │ │ │ │ └── main.xml │ │ │ ├── project.properties │ │ │ ├── .classpath │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── live │ │ │ │ │ └── sample │ │ │ │ │ ├── Config.java │ │ │ │ │ └── skydrive │ │ │ │ │ ├── SkyDriveFolder.java │ │ │ │ │ └── SkyDriveAlbum.java │ │ │ └── .project │ │ ├── src │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── AndroidManifest.xml │ │ │ ├── project.properties │ │ │ ├── .classpath │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── live │ │ │ │ │ ├── LiveStatus.java │ │ │ │ │ └── LiveOperationException.java │ │ │ ├── internal │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── live │ │ │ │ │ ├── OAuthRequestObserver.java │ │ │ │ │ ├── PreferencesConstants.java │ │ │ │ │ ├── OAuthResponseVisitor.java │ │ │ │ │ └── OAuthResponse.java │ │ │ └── .project │ │ ├── utilities │ │ │ ├── AndroidManifest.xml │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── live │ │ │ │ │ ├── test │ │ │ │ │ └── util │ │ │ │ │ │ ├── AssertMessages.java │ │ │ │ │ │ └── QueueingListener.java │ │ │ │ │ ├── constants │ │ │ │ │ ├── ErrorCodes.java │ │ │ │ │ └── Paths.java │ │ │ │ │ └── util │ │ │ │ │ ├── NullLiveOperationListener.java │ │ │ │ │ ├── NullLiveAuthListener.java │ │ │ │ │ ├── NullLiveUploadOperationListener.java │ │ │ │ │ └── NullLiveDownloadOperationListener.java │ │ │ ├── project.properties │ │ │ ├── .classpath │ │ │ └── .project │ │ └── unittest │ │ │ ├── project.properties │ │ │ ├── .classpath │ │ │ └── AndroidManifest.xml │ └── OneNoteSample │ │ ├── bin │ │ ├── classes.dex │ │ ├── resources.ap_ │ │ ├── OneNoteSample.apk │ │ ├── jarlist.cache │ │ ├── classes │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── onenotesample │ │ │ │ ├── R.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$menu.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── MainActivity$1.class │ │ │ │ ├── MainActivity$2.class │ │ │ │ └── MainActivity$3.class │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ ├── dexedLibs │ │ │ ├── livesdk-479373135df2217da3f006f1bcbf6e34.jar │ │ │ ├── livesdk-bd4f3eaccfa8e47afb6928064ce4bd73.jar │ │ │ ├── livesdk-dc99ea28b6b3928fb4c084271b0b8d6c.jar │ │ │ ├── android-support-v4-2eb6f6c58c74233487ace2422f6fcad0.jar │ │ │ ├── android-support-v4-8ee2d2b15d4d92161982caa424a851ba.jar │ │ │ └── android-support-v4-eda25719dcbf97e05059a8fd218c2790.jar │ │ └── R.txt │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ └── android-support-v4.jar │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── menu │ │ │ └── main.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ └── values-v14 │ │ │ └── styles.xml │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── onenotesample │ │ │ └── BuildConfig.java │ │ ├── .classpath │ │ ├── project.properties │ │ ├── proguard-project.txt │ │ └── .project └── Picker │ ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ ├── styles.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── menu │ │ │ │ │ └── my.xml │ │ │ │ └── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ ├── java │ │ │ │ └── onenote │ │ │ │ │ └── picker │ │ │ │ │ └── example │ │ │ │ │ └── Callback.java │ │ │ └── AndroidManifest.xml │ │ └── androidTest │ │ │ └── java │ │ │ └── onenote │ │ │ └── picker │ │ │ └── example │ │ │ └── ApplicationTest.java │ ├── proguard-rules.pro │ └── build.gradle │ ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── encodings.xml │ ├── vcs.xml │ ├── modules.xml │ ├── misc.xml │ ├── gradle.xml │ └── compiler.xml │ ├── settings.gradle │ ├── .gitignore │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── build.gradle │ ├── picker.iml │ └── gradle.properties ├── Windows Store └── Create New Page │ ├── WindowsStoreApp │ ├── obj │ │ └── Debug │ │ │ ├── App.g.cs │ │ │ ├── MainPage.g.cs │ │ │ ├── XamlTypeInfo.g.cs │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── App.xaml │ │ │ └── XamlSaveStateFile.xml │ ├── Fonts │ │ └── LiveSymbol.ttf │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── SplashScreen.scale-100.png │ ├── packages.config │ ├── App.xaml │ └── WindowsStoreApp.csproj.user │ ├── WindowsStoreApp.v12.suo │ └── packages │ └── repositories.config ├── Windows Phone ├── Create In Specific Section │ ├── OneNotePhoneApp │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── build.force │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── TempPE │ │ │ │ └── Resources.AppResources.Designer.cs.dll │ │ ├── Fonts │ │ │ └── LiveSymbol.ttf │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── IconicTileSmall.png │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ └── IconicTileMediumLarge.png │ │ ├── Properties │ │ │ └── AppManifest.xml │ │ ├── LocalizedStrings.cs │ │ ├── packages.config │ │ ├── OneNotePhoneApp.csproj.user │ │ └── App.xaml │ ├── OneNotePhoneApp.v12.suo │ └── packages │ │ └── repositories.config ├── Create New Page │ ├── OneNotePhoneApp │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── OneNotePhoneApp.dll │ │ │ │ ├── OneNotePhoneApp.pdb │ │ │ │ ├── OneNotePhoneApp.g.resources │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── OneNotePhoneApp.csproj.GenerateResource.Cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── OneNotePhoneApp.Resources.AppResources.resources │ │ │ │ └── OneNotePhoneApp.csprojResolveAssemblyReference.cache │ │ ├── Fonts │ │ │ └── LiveSymbol.ttf │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── IconicTileSmall.png │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ └── IconicTileMediumLarge.png │ │ ├── Bin │ │ │ └── Debug │ │ │ │ ├── Microsoft.Live.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── OneNotePhoneApp.dll │ │ │ │ ├── OneNotePhoneApp.pdb │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── Assets │ │ │ │ ├── ApplicationIcon.png │ │ │ │ └── Tiles │ │ │ │ │ ├── IconicTileSmall.png │ │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ │ └── IconicTileMediumLarge.png │ │ │ │ ├── Microsoft.Live.Controls.dll │ │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ │ ├── OneNotePhoneApp_Debug_AnyCPU.xap │ │ │ │ ├── cs │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── da │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── de │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── el │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── en │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── es │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── fi │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── fr │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── hu │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── id │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── it │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── ja │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── ko │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── ms │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── nl │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── pl │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── ru │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── sv │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── en-gb │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── nb-no │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── pt-br │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── pt-pt │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── zh-cn │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ ├── zh-tw │ │ │ │ └── Microsoft.Live.Controls.resources.dll │ │ │ │ └── AppManifest.xaml │ │ ├── Properties │ │ │ └── AppManifest.xml │ │ ├── LocalizedStrings.cs │ │ ├── packages.config │ │ ├── OneNotePhoneApp.csproj.user │ │ └── App.xaml │ ├── OneNotePhoneApp.v12.suo │ └── packages │ │ └── repositories.config └── Get Notebooks And Sections │ ├── Fonts │ └── LiveSymbol.ttf │ ├── OneNotePhoneApp.v12.suo │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── IconicTileSmall.png │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileSmall.png │ │ ├── FlipCycleTileMedium.png │ │ └── IconicTileMediumLarge.png │ ├── Properties │ └── AppManifest.xml │ ├── LocalizedStrings.cs │ ├── packages.config │ ├── OneNotePhoneApp.csproj.user │ └── App.xaml ├── iOS ├── Picker │ └── OneNoteDemoApp-Picker │ │ ├── OneNotePicker.framework │ │ ├── Versions │ │ │ ├── Current │ │ │ └── 1.0 │ │ │ │ ├── OneNotePicker │ │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ ├── iPad │ │ │ │ │ ├── ON_Notebooks.png │ │ │ │ │ ├── ON_Notebooks@2x.png │ │ │ │ │ ├── ON_iPad_Section_Icon.png │ │ │ │ │ ├── ON_iPad_Section_Icon@2x.png │ │ │ │ │ ├── ON_iPad_SectionGroups_Sections_iOS.png │ │ │ │ │ └── ON_iPad_SectionGroups_Sections_iOS@2x.png │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── OneNotePickerView.nib │ │ │ │ │ ├── objects.nib │ │ │ │ │ ├── runtime.nib │ │ │ │ │ └── objects-8.0+.nib │ │ │ │ ├── iPhone │ │ │ │ │ ├── ON_iPhone_Section_Icon@2x.png │ │ │ │ │ ├── ON_iPhone_NotebooksDrawer_N@2x.png │ │ │ │ │ └── ON_iPhone_SectionGroups_Sections@2x.png │ │ │ │ └── OneNotePickerView_iPad.nib │ │ │ │ │ ├── objects.nib │ │ │ │ │ ├── runtime.nib │ │ │ │ │ └── objects-8.0+.nib │ │ │ │ └── Headers │ │ │ │ └── OneNotePickerControllerDelegate.h │ │ ├── Headers │ │ ├── Resources │ │ └── OneNotePicker │ │ ├── LiveSDK.framework │ │ ├── Headers │ │ ├── LiveSDK │ │ ├── Versions │ │ │ ├── Current │ │ │ └── 5.0.3875.0411 │ │ │ │ ├── LiveSDK │ │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ ├── backArrow_black.png │ │ │ │ ├── LiveAuthDialog_iPad.nib │ │ │ │ ├── LiveAuthDialog_iPhone.nib │ │ │ │ └── PrivateHeaders │ │ │ │ │ ├── StringHelper.h │ │ │ │ │ ├── LiveConnectionCreatorDelegate.h │ │ │ │ │ ├── LiveDownloadOperationInternal.h │ │ │ │ │ ├── LiveOperationInternal.h │ │ │ │ │ ├── LiveAuthDialogDelegate.h │ │ │ │ │ ├── LiveConnectionHelper.h │ │ │ │ │ ├── LiveAuthStorage.h │ │ │ │ │ ├── LiveDownloadOperationCore.h │ │ │ │ │ ├── UrlHelper.h │ │ │ │ │ ├── StreamReader.h │ │ │ │ │ └── LiveAuthDialog.h │ │ │ │ └── Headers │ │ │ │ ├── LiveConnectSessionStatus.h │ │ │ │ ├── LiveDownloadOperation.h │ │ │ │ ├── LiveUploadOverwriteOption.h │ │ │ │ ├── LiveOperationDelegate.h │ │ │ │ ├── LiveOperationProgress.h │ │ │ │ └── LiveUploadOperationDelegate.h │ │ └── Resources │ │ ├── OneNoteDemoApp │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── HGViewController.h │ │ ├── HGAppDelegate.h │ │ ├── OneNoteDemoApp-Prefix.pch │ │ ├── main.m │ │ └── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── OneNoteDemoAppTests │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── OneNoteDemoAppTests-Info.plist │ │ └── OneNoteDemoAppTests.m │ │ └── OneNoteDemoApp.xcodeproj │ │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Create New Page │ └── OneNoteDemoApp │ │ ├── LiveSDK.framework │ │ ├── Versions │ │ │ ├── Current │ │ │ └── 5.0.3875.0411 │ │ │ │ ├── LiveSDK │ │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ ├── backArrow_black.png │ │ │ │ ├── LiveAuthDialog_iPad.nib │ │ │ │ ├── LiveAuthDialog_iPhone.nib │ │ │ │ └── PrivateHeaders │ │ │ │ │ ├── StringHelper.h │ │ │ │ │ ├── LiveConnectionCreatorDelegate.h │ │ │ │ │ ├── LiveDownloadOperationInternal.h │ │ │ │ │ ├── LiveOperationInternal.h │ │ │ │ │ ├── LiveAuthDialogDelegate.h │ │ │ │ │ ├── LiveConnectionHelper.h │ │ │ │ │ ├── LiveAuthStorage.h │ │ │ │ │ ├── LiveDownloadOperationCore.h │ │ │ │ │ ├── UrlHelper.h │ │ │ │ │ ├── StreamReader.h │ │ │ │ │ └── LiveAuthDialog.h │ │ │ │ └── Headers │ │ │ │ ├── LiveConnectSessionStatus.h │ │ │ │ ├── LiveDownloadOperation.h │ │ │ │ ├── LiveUploadOverwriteOption.h │ │ │ │ ├── LiveOperationDelegate.h │ │ │ │ ├── LiveOperationProgress.h │ │ │ │ └── LiveUploadOperationDelegate.h │ │ ├── Headers │ │ ├── LiveSDK │ │ └── Resources │ │ ├── OneNoteDemoApp │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── HGViewController.h │ │ ├── HGAppDelegate.h │ │ ├── OneNoteDemoApp-Prefix.pch │ │ ├── main.m │ │ └── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── OneNoteDemoAppTests │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── OneNoteDemoAppTests-Info.plist │ │ └── OneNoteDemoAppTests.m │ │ └── OneNoteDemoApp.xcodeproj │ │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── .gitignore ├── Ruby └── Create New Page │ ├── client_details.rb │ ├── Gemfile │ └── views │ └── note.erb ├── ASP.NET MVC └── Create New Page │ ├── OneNoteWebApp │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Account │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ └── Manage.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ └── Contact.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _LoginPartial.cshtml │ │ └── OneNote │ │ │ └── NewOneNotePage.cshtml │ ├── Global.asax │ ├── favicon.ico │ ├── Scripts │ │ └── _references.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── App_Start │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ ├── Startup.cs │ ├── Models │ │ ├── OneNoteCreateViewModel.cs │ │ └── IdentityModels.cs │ ├── Global.asax.cs │ ├── Controllers │ │ └── HomeController.cs │ └── Content │ │ └── Site.css │ ├── OneNoteWebApp.v12.suo │ └── packages │ └── repositories.config ├── Universal Apps └── App613 │ ├── App613.v12.suo │ ├── App613 │ ├── App613.Windows │ │ ├── Fonts │ │ │ └── LiveSymbol.ttf │ │ ├── Assets │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ └── SplashScreen.scale-100.png │ │ ├── App613.Windows.csproj.user │ │ ├── packages.config │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs │ ├── App613.WindowsPhone │ │ ├── Fonts │ │ │ └── LiveSymbol.ttf │ │ ├── Assets │ │ │ ├── Logo.scale-240.png │ │ │ ├── SmallLogo.scale-240.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ ├── WideLogo.scale-240.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ └── Square71x71Logo.scale-240.png │ │ ├── App613.WindowsPhone.csproj.user │ │ ├── packages.config │ │ └── MainPage.xaml │ └── App613.Shared │ │ ├── App.xaml │ │ └── App613.Shared.shproj │ └── packages │ └── repositories.config └── README.md /Android/Create New Page/.metadata/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Android/Picker/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/Picker/.idea/.name: -------------------------------------------------------------------------------- 1 | OneNote Picker Example -------------------------------------------------------------------------------- /Android/Picker/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.cdt.core/.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/XamlTypeInfo.g.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 5.0.3875.0411 -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/LiveSDK: -------------------------------------------------------------------------------- 1 | Versions/Current/LiveSDK -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 5.0.3875.0411 -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt: -------------------------------------------------------------------------------- 1 | java -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/LiveSDK: -------------------------------------------------------------------------------- 1 | Versions/Current/LiveSDK -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/OneNotePicker: -------------------------------------------------------------------------------- 1 | Versions/Current/OneNotePicker -------------------------------------------------------------------------------- /Ruby/Create New Page/client_details.rb: -------------------------------------------------------------------------------- 1 | CLIENT_ID = "CLIENT_ID" 2 | CLIENT_SECRET = "CLIENT_SECRET" 3 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613.v12.suo -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Android/Picker/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoAppTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Android/Picker/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoAppTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/.gitignore: -------------------------------------------------------------------------------- 1 | *.apk 2 | *.ap_ 3 | *.dex 4 | *.class 5 | bin/ 6 | gen/ 7 | local.properties 8 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/ASP.NET MVC/Create New Page/OneNoteWebApp.v12.suo -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | showIntro=false 3 | -------------------------------------------------------------------------------- /Android/Picker/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Picker/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="OneNoteWebApp.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | version=1 3 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | #Tue Jul 08 15:43:17 CAT 2014 2 | org.eclipse.core.runtime=2 3 | org.eclipse.platform=4.4.0.v20140606-1215 4 | -------------------------------------------------------------------------------- /Ruby/Create New Page/Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gem 'sinatra' 4 | gem 'sinatra-contrib' 5 | gem 'sinatra-flash' 6 | gem 'oauth2' 7 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/ASP.NET MVC/Create New Page/OneNoteWebApp/favicon.ico -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes.dex -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp.v12.suo -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp.v12.suo -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/resources.ap_ -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/OneNoteSample.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/OneNoteSample.apk -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/ic_launcher-web.png -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Picker/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Picker/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Fonts/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Fonts/LiveSymbol.ttf -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/ASP.NET MVC/Create New Page/OneNoteWebApp/Scripts/_references.js -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/LICENSE.txt -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Picker/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Picker/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/Fonts/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.Windows/Fonts/LiveSymbol.ttf -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp.v12.suo -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/OneNotePhoneApp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/OneNotePhoneApp.v12.suo -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Fonts/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Fonts/LiveSymbol.ttf -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/Fonts/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp/Fonts/LiveSymbol.ttf -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Fonts/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Fonts/LiveSymbol.ttf -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Windows Store/Create New Page/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Picker/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.Windows/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.Windows/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Microsoft.Live.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Microsoft.Live.dll -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.resources/.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.core.resources/.snap -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/OneNotePhoneApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/OneNotePhoneApp.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/OneNotePhoneApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/OneNotePhoneApp.pdb -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/System.Net.Http.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.pdb -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/318813597.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/318813597.index -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/77262011.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/77262011.index -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/983067953.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/983067953.index -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.Windows/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Fonts/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Fonts/LiveSymbol.ttf -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Get Notebooks And Sections/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/ASP.NET MVC/Create New Page/OneNoteWebApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/ASP.NET MVC/Create New Page/OneNoteWebApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/ASP.NET MVC/Create New Page/OneNoteWebApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/1568063782.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/1568063782.index -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/1956723311.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/1956723311.index -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/2382626706.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/2382626706.index -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/2608976214.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/2608976214.index -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/LiveSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/LiveSDK -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Picker/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Android/Picker/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Microsoft.Live.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Microsoft.Live.Controls.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.g.resources -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/LiveSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/LiveSDK -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/OneNotePicker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/OneNotePicker -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/folder.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/folder.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/folder.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$id.class -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Universal Apps/App613/App613/App613.WindowsPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/folder.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$attr.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$dimen.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$menu.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$style.class -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/OneNotePhoneApp_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/OneNotePhoneApp_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Login Failure"; 3 | } 4 | 5 |

@ViewBag.Title.

6 |

Unsuccessful login with service.

7 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$layout.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$string.class -------------------------------------------------------------------------------- /Android/Picker/app/src/main/java/onenote/picker/example/Callback.java: -------------------------------------------------------------------------------- 1 | package onenote.picker.example; 2 | 3 | public interface Callback { 4 | public void success(T result); 5 | 6 | public void failure(Throwable e); 7 | } 8 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/Info.plist -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/folder_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/folder_image.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/text_x_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/text_x_preview.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/folder_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/folder_image.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/text_x_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/text_x_preview.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/folder_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/folder_image.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/text_x_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/text_x_preview.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/folder_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/folder_image.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/BuildConfig.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/R$drawable.class -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/Info.plist -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/audio_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/audio_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/image_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/image_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/video_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-hdpi/video_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/audio_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/audio_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/image_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/image_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/video_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-ldpi/video_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/audio_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/audio_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/image_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/image_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/video_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-mdpi/video_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/audio_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/audio_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/image_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/image_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/text_x_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/text_x_preview.png -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/video_x_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/LiveSDK-for-Android-master/sample/res/drawable-xhdpi/video_x_generic.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity$1.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity$2.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/classes/com/example/onenotesample/MainActivity$3.class -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/dexedLibs/livesdk-479373135df2217da3f006f1bcbf6e34.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/dexedLibs/livesdk-479373135df2217da3f006f1bcbf6e34.jar -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/dexedLibs/livesdk-bd4f3eaccfa8e47afb6928064ce4bd73.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/dexedLibs/livesdk-bd4f3eaccfa8e47afb6928064ce4bd73.jar -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/dexedLibs/livesdk-dc99ea28b6b3928fb4c084271b0b8d6c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/dexedLibs/livesdk-dc99ea28b6b3928fb4c084271b0b8d6c.jar -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/cs/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/cs/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/da/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/da/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/de/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/de/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/el/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/el/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/en/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/en/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/es/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/es/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/fi/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/fi/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/fr/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/fr/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/hu/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/hu/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/id/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/id/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/it/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/it/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ja/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ja/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ko/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ko/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ms/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ms/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/nl/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/nl/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/pl/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/pl/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ru/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/ru/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/sv/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/sv/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/Info.plist -------------------------------------------------------------------------------- /Ruby/Create New Page/views/note.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | <%= title %> 4 | 5 | 6 | 7 | <%= markdown(body) %> 8 | 9 | 10 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/en-gb/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/en-gb/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/nb-no/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/nb-no/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/pt-br/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/pt-br/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/pt-pt/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/pt-pt/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/zh-cn/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/zh-cn/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/zh-tw/Microsoft.Live.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/Bin/Debug/zh-tw/Microsoft.Live.Controls.resources.dll -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_Notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_Notebooks.png -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.Resources.AppResources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.Resources.AppResources.resources -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Store/Create New Page/WindowsStoreApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/backArrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/backArrow_black.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_Notebooks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_Notebooks@2x.png -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/backArrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/backArrow_black.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/dexedLibs/android-support-v4-2eb6f6c58c74233487ace2422f6fcad0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/dexedLibs/android-support-v4-2eb6f6c58c74233487ace2422f6fcad0.jar -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/dexedLibs/android-support-v4-8ee2d2b15d4d92161982caa424a851ba.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/dexedLibs/android-support-v4-8ee2d2b15d4d92161982caa424a851ba.jar -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/dexedLibs/android-support-v4-eda25719dcbf97e05059a8fd218c2790.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Android/Create New Page/OneNoteSample/bin/dexedLibs/android-support-v4-eda25719dcbf97e05059a8fd218c2790.jar -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/gen/com/example/onenotesample/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.onenotesample; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Universal Apps/App613/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create New Page/OneNotePhoneApp/obj/Debug/OneNotePhoneApp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPad.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPad.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPhone.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_Section_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_Section_Icon.png -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/LiveAuthDialog_iPhone.nib -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/src/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/TempPE/Resources.AppResources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/Windows Phone/Create In Specific Section/OneNotePhoneApp/obj/Debug/TempPE/Resources.AppResources.Designer.cs.dll -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView.nib/objects.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView.nib/runtime.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_Section_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_Section_Icon@2x.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPhone/ON_iPhone_Section_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPhone/ON_iPhone_Section_Icon@2x.png -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView.nib/objects-8.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView.nib/objects-8.0+.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView_iPad.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView_iPad.nib/objects.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView_iPad.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView_iPad.nib/runtime.nib -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Shared/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPhone/ON_iPhone_NotebooksDrawer_N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPhone/ON_iPhone_NotebooksDrawer_N@2x.png -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | 3 | @{ 4 | ViewBag.Title = "Error"; 5 | } 6 | 7 |

Error.

8 |

An error occurred while processing your request.

9 | 10 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView_iPad.nib/objects-8.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/OneNotePickerView_iPad.nib/objects-8.0+.nib -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_SectionGroups_Sections_iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_SectionGroups_Sections_iOS.png -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_SectionGroups_Sections_iOS@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPad/ON_iPad_SectionGroups_Sections_iOS@2x.png -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPhone/ON_iPhone_SectionGroups_Sections@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/Videos/master/iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Resources/iPhone/ON_iPhone_SectionGroups_Sections@2x.png -------------------------------------------------------------------------------- /Android/Picker/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip 7 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/App613.Windows.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | False 5 | 6 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OneNoteSample 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/WindowsStoreApp.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | False 5 | 6 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/App613.WindowsPhone.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | False 5 | 6 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt: -------------------------------------------------------------------------------- 1 | INDEX VERSION 1.127+C:\Users\Michael.Hancock\Downloads\New folder (3)\OneNoteSample\.metadata\.plugins\org.eclipse.jdt.core 2 | 318813597.index 3 | 2608976214.index 4 | 2382626706.index 5 | 77262011.index 6 | 983067953.index 7 | 1956723311.index 8 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /iOS/.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | */build/* 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | profile 14 | *.moved-aside 15 | DerivedData 16 | .idea/ 17 | *.hmap 18 | *.xccheckout 19 | 20 | #CocoaPods 21 | Pods -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/HGViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HGViewController.h 3 | // OneNoteDemoApp 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HGViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/HGViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HGViewController.h 3 | // OneNoteDemoApp 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HGViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/test/util/AssertMessages.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.test.util; 2 | 3 | public final class AssertMessages { 4 | 5 | public static final String NO_EXCEPTION_THROWN = "Method was expected to throw a(n) %s"; 6 | 7 | private AssertMessages() { throw new AssertionError(); } 8 | } 9 | -------------------------------------------------------------------------------- /Windows Store/Create New Page/WindowsStoreApp/obj/Debug/XamlSaveStateFile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/src/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace OneNoteWebApp 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Owin; 2 | using Owin; 3 | 4 | [assembly: OwinStartupAttribute(typeof(OneNoteWebApp.Startup))] 5 | namespace OneNoteWebApp 6 | { 7 | public partial class Startup 8 | { 9 | public void Configuration(IAppBuilder app) 10 | { 11 | ConfigureAuth(app); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/menu/my.xml: -------------------------------------------------------------------------------- 1 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Models/OneNoteCreateViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace OneNoteWebApp.Models 7 | { 8 | public class OneNoteCreateViewModel 9 | { 10 | public string ResponseMessage { get; set; } 11 | 12 | public Uri NewPageLink { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/StringHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // StringHelper.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface StringHelper : NSObject 11 | 12 | + (BOOL) isNullOrEmpty: (NSString *) value; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/StringHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // StringHelper.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface StringHelper : NSObject 11 | 12 | + (BOOL) isNullOrEmpty: (NSString *) value; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Android/Picker/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/HGAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // HGAppDelegate.h 3 | // OneNoteDemoApp 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HGAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/HGAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // HGAppDelegate.h 3 | // OneNoteDemoApp 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HGAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Android/Picker/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OneNotePickerDemo 5 | Hello world! 6 | Settings 7 | 000000004C1180CF 8 | 9 | 10 | -------------------------------------------------------------------------------- /Android/Picker/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using OneNotePhoneApp.Resources; 2 | 3 | namespace OneNotePhoneApp 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using OneNotePhoneApp.Resources; 2 | 3 | namespace OneNotePhoneApp 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /Android/Picker/app/src/androidTest/java/onenote/picker/example/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package onenote.picker.example; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/OneNoteDemoApp-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using OneNotePhoneApp.Resources; 2 | 3 | namespace OneNotePhoneApp 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/OneNoteDemoApp-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // OneNoteDemoApp 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "HGAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([HGAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // OneNoteDemoApp 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "HGAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([HGAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/src/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | android.library=true 11 | # Project target. 12 | target=android-8 13 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveConnectionCreatorDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveConnectionCreatorDelegate.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @protocol LiveConnectionCreatorDelegate 11 | 12 | - (id) createConnectionWithRequest:(NSURLRequest *)request 13 | delegate:(id)delegate; 14 | @end 15 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveConnectionCreatorDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveConnectionCreatorDelegate.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @protocol LiveConnectionCreatorDelegate 11 | 12 | - (id) createConnectionWithRequest:(NSURLRequest *)request 13 | delegate:(id)delegate; 14 | @end 15 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-8 12 | android.library.reference.1=../src 13 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveDownloadOperationInternal.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveOperationInternal.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveDownloadOperation.h" 10 | #import "LiveDownloadOperationCore.h" 11 | 12 | @interface LiveDownloadOperation() 13 | 14 | - (id) initWithOpCore:(LiveDownloadOperationCore *)opCore; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveDownloadOperationInternal.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveOperationInternal.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveDownloadOperation.h" 10 | #import "LiveDownloadOperationCore.h" 11 | 12 | @interface LiveDownloadOperation() 13 | 14 | - (id) initWithOpCore:(LiveDownloadOperationCore *)opCore; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-8 12 | android.library.reference.1=../src 13 | android.library=true 14 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Videos 2 | ====== 3 | 4 | This repository contains all the downloadable source code shown in the OneNote Developer Videos Series. You can find the video series at http://channel9.msdn.com/Series/OneNoteDev 5 | 6 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 7 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveOperationInternal.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveOperationInternal.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveOperation.h" 10 | #import "LiveOperationCore.h" 11 | 12 | @interface LiveOperation() 13 | 14 | - (id) initWithOpCore:(LiveOperationCore *)opCore; 15 | 16 | @property (nonatomic, readonly) LiveOperationCore *liveOpCore; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveOperationInternal.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveOperationInternal.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveOperation.h" 10 | #import "LiveOperationCore.h" 11 | 12 | @interface LiveOperation() 13 | 14 | - (id) initWithOpCore:(LiveOperationCore *)opCore; 15 | 16 | @property (nonatomic, readonly) LiveOperationCore *liveOpCore; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/unittest/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-8 12 | android.library.reference.1=../src 13 | android.library.reference.2=../utilities 14 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.Windows/MainPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Contact"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |
8 | One Microsoft Way
9 | Redmond, WA 98052-6399
10 | P: 11 | 425.555.0100 12 |
13 | 14 |
15 | Support: Support@example.com
16 | Marketing: Marketing@example.com 17 |
-------------------------------------------------------------------------------- /Universal Apps/App613/App613/App613.WindowsPhone/MainPage.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_VM_XML=\r\n\r\n\r\n\r\n\r\n\r\n 3 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.jdt.core/.org.eclipse.jdt.core.external.folders/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | .org.eclipse.jdt.core.external.folders 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | .link0 14 | 2 15 | C:/dev/android/sdk/sources/android-19 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/layout/view_contacts_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveAuthDialogDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveAuthDialogDelegate.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @protocol LiveAuthDialogDelegate 11 | 12 | - (void) authDialogCompletedWithResponse:(NSURL *)responseUrl; 13 | 14 | - (void) authDialogFailedWithError:(NSError *)error; 15 | 16 | - (void) authDialogCanceled; 17 | 18 | - (void) authDialogDisappeared; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveAuthDialogDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveAuthDialogDelegate.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @protocol LiveAuthDialogDelegate 11 | 12 | - (void) authDialogCompletedWithResponse:(NSURL *)responseUrl; 13 | 14 | - (void) authDialogFailedWithError:(NSError *)error; 15 | 16 | - (void) authDialogCanceled; 17 | 18 | - (void) authDialogDisappeared; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.core.prefs: -------------------------------------------------------------------------------- 1 | //org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.applicationLaunchType=org.eclipse.cdt.dsf.gdb.launch.localCLaunch,debug,;org.eclipse.cdt.cdi.launch.localCLaunch,run,; 2 | //org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.attachLaunchType=org.eclipse.cdt.dsf.gdb.launch.attachCLaunch,debug,; 3 | //org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.postmortemLaunchType=org.eclipse.cdt.dsf.gdb.launch.coreCLaunch,debug,; 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/constants/ErrorCodes.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.constants; 2 | 3 | public final class ErrorCodes { 4 | 5 | public static final String REQUEST_PARAMETER_INVALID = "request_parameter_invalid"; 6 | public static final String REQUEST_PARAMETER_MISSING = "request_parameter_missing"; 7 | public static final String REQUEST_URL_INVALID = "request_url_invalid"; 8 | public static final String RESOURCE_NOT_FOUND = "resource_not_found"; 9 | 10 | private ErrorCodes() { throw new AssertionError(); } 11 | } 12 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/src/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveConnectionHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveConnectionHelper.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveConnectionCreatorDelegate.h" 10 | 11 | @interface LiveConnectionHelper : NSObject 12 | 13 | + (id) createConnectionWithRequest:(NSURLRequest *)request 14 | delegate:(id)delegate; 15 | 16 | + (void) setLiveConnectCreator:(id)creator; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveConnectionHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveConnectionHelper.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveConnectionCreatorDelegate.h" 10 | 11 | @interface LiveConnectionHelper : NSObject 12 | 13 | + (id) createConnectionWithRequest:(NSURLRequest *)request 14 | delegate:(id)delegate; 15 | 16 | + (void) setLiveConnectCreator:(id)creator; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/bin/R.txt: -------------------------------------------------------------------------------- 1 | int dimen activity_horizontal_margin 0x7f040000 2 | int dimen activity_vertical_margin 0x7f040001 3 | int drawable ic_launcher 0x7f020000 4 | int id action_settings 0x7f080005 5 | int id button1 0x7f080002 6 | int id createPage 0x7f080003 7 | int id ct 0x7f080001 8 | int id scroll 0x7f080000 9 | int id text 0x7f080004 10 | int layout activity_main 0x7f030000 11 | int menu main 0x7f070000 12 | int string action_settings 0x7f050001 13 | int string app_name 0x7f050000 14 | int string hello_world 0x7f050002 15 | int style AppBaseTheme 0x7f060000 16 | int style AppTheme 0x7f060001 17 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Models/IdentityModels.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNet.Identity.EntityFramework; 2 | 3 | namespace OneNoteWebApp.Models 4 | { 5 | // You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more. 6 | public class ApplicationUser : IdentityUser 7 | { 8 | } 9 | 10 | public class ApplicationDbContext : IdentityDbContext 11 | { 12 | public ApplicationDbContext() 13 | : base("DefaultConnection") 14 | { 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoApp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoApp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/unittest/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveAuthStorage.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveAuthStorage.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | /* 11 | A utility class to handle auth information persistency. 12 | */ 13 | @interface LiveAuthStorage : NSObject 14 | { 15 | @private 16 | NSString *_filePath; 17 | NSString *_clientId; 18 | } 19 | 20 | @property (nonatomic, retain) NSString *refreshToken; 21 | 22 | - (id) initWithClientId:(NSString *)clientId; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveAuthStorage.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveAuthStorage.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | /* 11 | A utility class to handle auth information persistency. 12 | */ 13 | @interface LiveAuthStorage : NSObject 14 | { 15 | @private 16 | NSString *_filePath; 17 | NSString *_clientId; 18 | } 19 | 20 | @property (nonatomic, retain) NSString *refreshToken; 21 | 22 | - (id) initWithClientId:(NSString *)clientId; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Android/Picker/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:0.12.2' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven{ 19 | url 'https://raw.github.com/michan85/michan85.github.io/mvn-repo' 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Android/Picker/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveConnectSessionStatus.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveConnectSessionStatus.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | // An enum type representing the user's session status. 9 | typedef enum 10 | { 11 | // The user is unknown. 12 | LiveAuthUnknown = 0, 13 | 14 | // The user has consented to the scopes the app specified. 15 | LiveAuthConnected = 1, 16 | 17 | // The user has not consented to the scopes the app specified yet 18 | LiveAuthNotConnected = 2, 19 | 20 | } LiveConnectSessionStatus; 21 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveConnectSessionStatus.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveConnectSessionStatus.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | // An enum type representing the user's session status. 9 | typedef enum 10 | { 11 | // The user is unknown. 12 | LiveAuthUnknown = 0, 13 | 14 | // The user has consented to the scopes the app specified. 15 | LiveAuthConnected = 1, 16 | 17 | // The user has not consented to the scopes the app specified yet 18 | LiveAuthNotConnected = 2, 19 | 20 | } LiveConnectSessionStatus; 21 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveDownloadOperation.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveDownloadOperation.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveDownloadOperationDelegate.h" 10 | #import "LiveOperation.h" 11 | 12 | // LiveDownloadOperation class represents an operation of downloading a file from the user's SkyDrive account. 13 | @interface LiveDownloadOperation : LiveOperation 14 | 15 | // The NSData instance that contains the downloaded data. 16 | @property (nonatomic, readonly) NSData *data; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveDownloadOperation.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveDownloadOperation.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveDownloadOperationDelegate.h" 10 | #import "LiveOperation.h" 11 | 12 | // LiveDownloadOperation class represents an operation of downloading a file from the user's SkyDrive account. 13 | @interface LiveDownloadOperation : LiveOperation 14 | 15 | // The NSData instance that contains the downloaded data. 16 | @property (nonatomic, readonly) NSData *data; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/constants/Paths.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.constants; 2 | 3 | public final class Paths { 4 | public static final String ABSOLUTE = "https://apis.live.net/v5.0/me"; 5 | public static final String INVALID = "&Some!Invalid*Path8"; 6 | public static final String ME = "me"; 7 | public static final String ME_CALENDARS = ME + "/calendars"; 8 | public static final String ME_CONTACTS = ME + "/contacts"; 9 | public static final String ME_PICTURE = ME + "/picture"; 10 | public static final String ME_SKYDRIVE = ME + "/skydrive"; 11 | 12 | private Paths() { throw new AssertionError(); } 13 | } 14 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/util/NullLiveOperationListener.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.util; 2 | 3 | import com.microsoft.live.LiveOperation; 4 | import com.microsoft.live.LiveOperationException; 5 | import com.microsoft.live.LiveOperationListener; 6 | 7 | public enum NullLiveOperationListener implements LiveOperationListener { 8 | INSTANCE; 9 | 10 | @Override 11 | public void onComplete(LiveOperation operation) { 12 | // Do nothing. 13 | } 14 | 15 | @Override 16 | public void onError(LiveOperationException exception, LiveOperation operation) { 17 | // Do nothing. 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Android/Picker/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # You can edit the include path and order by changing the proguardFiles 4 | # directive in build.gradle. 5 | # 6 | # For more details, see 7 | # http://developer.android.com/guide/developing/tools/proguard.html 8 | 9 | # Add any project specific keep options here: 10 | 11 | # If your project uses WebView with JS, uncomment the following 12 | # and specify the fully qualified class name to the JavaScript interface 13 | # class: 14 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 15 | # public *; 16 | #} 17 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveUploadOverwriteOption.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveUploadOverwriteOption.h 3 | // Live SDK for iOS 4 | // 5 | // Created by Lin Wang on 6/26/12. 6 | // Copyright (c) 2012 Microsoft. All rights reserved. 7 | // 8 | 9 | // An enum type representing the overwrite options for upload methods. 10 | typedef enum 11 | { 12 | // Overwrite the existing file. 13 | LiveUploadOverwrite = 0, 14 | 15 | // Do not overwrite the existing file. 16 | LiveUploadDoNotOverwrite = 1, 17 | 18 | // Give the uploaded file a new name. 19 | LiveUploadRename = 2, 20 | 21 | } LiveUploadOverwriteOption; -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveUploadOverwriteOption.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveUploadOverwriteOption.h 3 | // Live SDK for iOS 4 | // 5 | // Created by Lin Wang on 6/26/12. 6 | // Copyright (c) 2012 Microsoft. All rights reserved. 7 | // 8 | 9 | // An enum type representing the overwrite options for upload methods. 10 | typedef enum 11 | { 12 | // Overwrite the existing file. 13 | LiveUploadOverwrite = 0, 14 | 15 | // Do not overwrite the existing file. 16 | LiveUploadDoNotOverwrite = 1, 17 | 18 | // Give the uploaded file a new name. 19 | LiveUploadRename = 2, 20 | 21 | } LiveUploadOverwriteOption; -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | content_assist_number_of_computers=13 2 | content_assist_proposals_background=255,255,255 3 | content_assist_proposals_foreground=0,0,0 4 | eclipse.preferences.version=1 5 | fontPropagated=true 6 | org.eclipse.jdt.ui.editor.tab.width= 7 | org.eclipse.jdt.ui.formatterprofiles.version=12 8 | org.eclipse.jdt.ui.javadoclocations.migrated=true 9 | org.eclipse.jface.textfont=1|Consolas|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Consolas; 10 | proposalOrderMigrated=true 11 | spelling_locale_initialized=true 12 | tabWidthPropagated=true 13 | useAnnotationsPrefPage=true 14 | useQuickDiffPrefPage=true 15 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Optimization; 7 | using System.Web.Routing; 8 | 9 | namespace OneNoteWebApp 10 | { 11 | public class MvcApplication : System.Web.HttpApplication 12 | { 13 | protected void Application_Start() 14 | { 15 | AreaRegistration.RegisterAllAreas(); 16 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 17 | RouteConfig.RegisterRoutes(RouteTable.Routes); 18 | BundleConfig.RegisterBundles(BundleTable.Bundles); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Windows Phone/Get Notebooks And Sections/OneNotePhoneApp.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | True 8 | Managed 9 | Managed 10 | False 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/unittest/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Windows Phone/Create New Page/OneNotePhoneApp/OneNotePhoneApp.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | True 8 | Managed 9 | Managed 10 | False 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Windows Phone/Create In Specific Section/OneNotePhoneApp/OneNotePhoneApp.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | True 8 | Managed 9 | Managed 10 | False 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/test/util/QueueingListener.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.test.util; 2 | 3 | import java.util.concurrent.BlockingQueue; 4 | 5 | import com.microsoft.live.LiveOperationException; 6 | 7 | public abstract class QueueingListener { 8 | final protected BlockingQueue exceptionQueue; 9 | final protected BlockingQueue responseQueue; 10 | 11 | public QueueingListener(BlockingQueue exceptionQueue, 12 | BlockingQueue responseQueue) { 13 | this.exceptionQueue = exceptionQueue; 14 | this.responseQueue = responseQueue; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library.reference.1=../LiveSDK-for-Android-master/src 16 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/layout/view_contacts.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 13 | 17 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/util/NullLiveAuthListener.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.util; 2 | 3 | import com.microsoft.live.LiveAuthException; 4 | import com.microsoft.live.LiveAuthListener; 5 | import com.microsoft.live.LiveConnectSession; 6 | import com.microsoft.live.LiveStatus; 7 | 8 | public enum NullLiveAuthListener implements LiveAuthListener { 9 | INSTANCE; 10 | 11 | @Override 12 | public void onAuthComplete(LiveStatus status, LiveConnectSession session, Object userState) { 13 | // Do nothing. 14 | } 15 | 16 | @Override 17 | public void onAuthError(LiveAuthException exception, Object userState) { 18 | // Do nothing. 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveDownloadOperationCore.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveDownloadOperationCore.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveOperationCore.h" 10 | #import "LiveDownloadOperationDelegate.h" 11 | 12 | @interface LiveDownloadOperationCore : LiveOperationCore 13 | { 14 | @private 15 | NSUInteger contentLength; 16 | } 17 | 18 | - (id) initWithPath:(NSString *)path 19 | delegate:(id )delegate 20 | userState:(id)userState 21 | liveClient:(LiveConnectClientCore *)liveClient; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/src/src/com/microsoft/live/LiveStatus.java: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // Copyright (c) 2012 Microsoft Corporation. All rights reserved. 3 | // 4 | // Description: See the class level JavaDoc comments. 5 | //------------------------------------------------------------------------------ 6 | 7 | package com.microsoft.live; 8 | 9 | /** 10 | * Specifies the status of an auth operation. 11 | */ 12 | public enum LiveStatus { 13 | /** The status is not known. */ 14 | UNKNOWN, 15 | 16 | /** The session is connected. */ 17 | CONNECTED, 18 | 19 | /** The user has not consented to the application. */ 20 | NOT_CONNECTED; 21 | } 22 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/LiveDownloadOperationCore.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveDownloadOperationCore.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "LiveOperationCore.h" 10 | #import "LiveDownloadOperationDelegate.h" 11 | 12 | @interface LiveDownloadOperationCore : LiveOperationCore 13 | { 14 | @private 15 | NSUInteger contentLength; 16 | } 17 | 18 | - (id) initWithPath:(NSString *)path 19 | delegate:(id )delegate 20 | userState:(id)userState 21 | liveClient:(LiveConnectClientCore *)liveClient; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /ASP.NET MVC/Create New Page/OneNoteWebApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace OneNoteWebApp.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | return View(); 14 | } 15 | 16 | public ActionResult About() 17 | { 18 | ViewBag.Message = "Your application description page."; 19 | 20 | return View(); 21 | } 22 | 23 | public ActionResult Contact() 24 | { 25 | ViewBag.Message = "Your contact page."; 26 | 27 | return View(); 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/layout/skydrive.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/layout/file_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 15 | 20 | 21 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/UrlHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // UrlHelper.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface UrlHelper : NSObject 11 | 12 | + (NSString *) encodeUrlParameters: (NSDictionary *)params; 13 | + (NSDictionary *) decodeUrlParameters: (NSString *)paramStr; 14 | 15 | + (NSURL *) constructUrl: (NSString *)baseUrl params: (NSDictionary *)params; 16 | + (NSDictionary *) parseUrl:(NSURL *)url ; 17 | 18 | + (BOOL) isFullUrl:(NSString *)url; 19 | 20 | + (NSString *) getQueryString: (NSString *)path; 21 | + (NSString *) appendQueryString: (NSString *)query toPath: (NSString *)path; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/UrlHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // UrlHelper.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface UrlHelper : NSObject 11 | 12 | + (NSString *) encodeUrlParameters: (NSDictionary *)params; 13 | + (NSDictionary *) decodeUrlParameters: (NSString *)paramStr; 14 | 15 | + (NSURL *) constructUrl: (NSString *)baseUrl params: (NSDictionary *)params; 16 | + (NSDictionary *) parseUrl:(NSURL *)url ; 17 | 18 | + (BOOL) isFullUrl:(NSString *)url; 19 | 20 | + (NSString *) getQueryString: (NSString *)path; 21 | + (NSString *) appendQueryString: (NSString *)query toPath: (NSString *)path; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNotePicker.framework/Versions/1.0/Headers/OneNotePickerControllerDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. Licensed under the Apache License, Version 2.0. 3 | // See License.txt in the project root for license information. 4 | // 5 | 6 | #import 7 | 8 | @class OneNotePickerController; 9 | 10 | @protocol OneNotePickerControllerDelegate 11 | 12 | @optional 13 | - (void)oneNotePickerController:(OneNotePickerController *)picker didFinishPickingSectionWithInfo:(NSDictionary *)info; 14 | - (void)oneNotePickerControllerDidCancel:(OneNotePickerController *)picker; 15 | - (void)oneNotePickerController:(OneNotePickerController *)picker didErrorWithInfo:(NSDictionary *)info; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/layout/file_picker_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /Android/Create New Page/OneNoteSample/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/src/com/microsoft/live/sample/Config.java: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // Copyright (c) 2012 Microsoft Corporation. All rights reserved. 3 | //------------------------------------------------------------------------------ 4 | 5 | package com.microsoft.live.sample; 6 | 7 | final public class Config { 8 | public static final String CLIENT_ID = "YOUR CLIENT ID HERE"; 9 | 10 | public static final String[] SCOPES = { 11 | "wl.signin", 12 | "wl.basic", 13 | "wl.offline_access", 14 | "wl.skydrive_update", 15 | "wl.contacts_create", 16 | }; 17 | 18 | private Config() { 19 | throw new AssertionError("Unable to create Config object."); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveOperationDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveOperationDelegate.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @class LiveOperation; 11 | 12 | // LiveOperationDelegate represents the protocol capturing Live service access operation related callback 13 | // handling methods. 14 | @protocol LiveOperationDelegate 15 | 16 | // This is invoked when the operation was successful. 17 | - (void) liveOperationSucceeded:(LiveOperation *)operation; 18 | 19 | // This is invoked when the operation failed. 20 | @optional 21 | - (void) liveOperationFailed:(NSError *)error 22 | operation:(LiveOperation*)operation; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Headers/LiveOperationDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LiveOperationDelegate.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft Corp. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @class LiveOperation; 11 | 12 | // LiveOperationDelegate represents the protocol capturing Live service access operation related callback 13 | // handling methods. 14 | @protocol LiveOperationDelegate 15 | 16 | // This is invoked when the operation was successful. 17 | - (void) liveOperationSucceeded:(LiveOperation *)operation; 18 | 19 | // This is invoked when the operation failed. 20 | @optional 21 | - (void) liveOperationFailed:(NSError *)error 22 | operation:(LiveOperation*)operation; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Android/Picker/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Android/Create New Page/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.cdt.debug.core.cDebug.default_source_containers=\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n 3 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/src/com/microsoft/live/sample/skydrive/SkyDriveFolder.java: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // Copyright (c) 2012 Microsoft Corporation. All rights reserved. 3 | //------------------------------------------------------------------------------ 4 | 5 | package com.microsoft.live.sample.skydrive; 6 | 7 | import org.json.JSONObject; 8 | 9 | public class SkyDriveFolder extends SkyDriveObject { 10 | public static final String TYPE = "folder"; 11 | 12 | public SkyDriveFolder(JSONObject object) { 13 | super(object); 14 | } 15 | 16 | @Override 17 | public void accept(Visitor visitor) { 18 | visitor.visit(this); 19 | } 20 | 21 | public int getCount() { 22 | return mObject.optInt("count"); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/StreamReader.h: -------------------------------------------------------------------------------- 1 | // 2 | // StreamReader.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @protocol StreamReaderDelegate 11 | 12 | - (void)streamReadingCompleted:(NSData *)data; 13 | - (void)streamReadingFailed:(NSError *)error; 14 | 15 | @end 16 | 17 | @interface StreamReader : NSObject 18 | 19 | @property (nonatomic, retain) NSMutableData *data; 20 | @property (nonatomic, retain) NSInputStream *stream; 21 | @property (nonatomic, assign) id delegate; 22 | 23 | - (id)initWithStream:(NSInputStream *)stream 24 | delegate:(id)delegate; 25 | 26 | - (void)start; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/LiveSDK.framework/Versions/5.0.3875.0411/Resources/PrivateHeaders/StreamReader.h: -------------------------------------------------------------------------------- 1 | // 2 | // StreamReader.h 3 | // Live SDK for iOS 4 | // 5 | // Copyright (c) 2011 Microsoft. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @protocol StreamReaderDelegate 11 | 12 | - (void)streamReadingCompleted:(NSData *)data; 13 | - (void)streamReadingFailed:(NSError *)error; 14 | 15 | @end 16 | 17 | @interface StreamReader : NSObject 18 | 19 | @property (nonatomic, retain) NSMutableData *data; 20 | @property (nonatomic, retain) NSInputStream *stream; 21 | @property (nonatomic, assign) id delegate; 22 | 23 | - (id)initWithStream:(NSInputStream *)stream 24 | delegate:(id)delegate; 25 | 26 | - (void)start; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/src/com/microsoft/live/sample/skydrive/SkyDriveAlbum.java: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // Copyright (c) 2012 Microsoft Corporation. All rights reserved. 3 | //------------------------------------------------------------------------------ 4 | 5 | package com.microsoft.live.sample.skydrive; 6 | 7 | import org.json.JSONObject; 8 | 9 | public class SkyDriveAlbum extends SkyDriveObject { 10 | 11 | public static final String TYPE = "album"; 12 | 13 | public SkyDriveAlbum(JSONObject object) { 14 | super(object); 15 | } 16 | 17 | @Override 18 | public void accept(Visitor visitor) { 19 | visitor.visit(this); 20 | } 21 | 22 | public int getCount() { 23 | return mObject.optInt("count"); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoAppTests/OneNoteDemoAppTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.myorganization.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoAppTests/OneNoteDemoAppTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.myorganization.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/utilities/src/com/microsoft/live/util/NullLiveUploadOperationListener.java: -------------------------------------------------------------------------------- 1 | package com.microsoft.live.util; 2 | 3 | import com.microsoft.live.LiveOperation; 4 | import com.microsoft.live.LiveOperationException; 5 | import com.microsoft.live.LiveUploadOperationListener; 6 | 7 | public enum NullLiveUploadOperationListener implements LiveUploadOperationListener { 8 | INSTANCE; 9 | 10 | @Override 11 | public void onUploadCompleted(LiveOperation operation) { 12 | // Do nothing. 13 | } 14 | 15 | @Override 16 | public void onUploadFailed(LiveOperationException exception, LiveOperation operation) { 17 | // Do nothing. 18 | } 19 | 20 | @Override 21 | public void onUploadProgress(int totalBytes, int bytesRemaining, LiveOperation operation) { 22 | // Do nothing. 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /iOS/Picker/OneNoteDemoApp-Picker/OneNoteDemoAppTests/OneNoteDemoAppTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // OneNoteDemoAppTests.m 3 | // OneNoteDemoAppTests 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OneNoteDemoAppTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation OneNoteDemoAppTests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /iOS/Create New Page/OneNoteDemoApp/OneNoteDemoAppTests/OneNoteDemoAppTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // OneNoteDemoAppTests.m 3 | // OneNoteDemoAppTests 4 | // 5 | // Created by Demo User on 2014/05/22. 6 | // Copyright (c) 2014 MyOrganization.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OneNoteDemoAppTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation OneNoteDemoAppTests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Android/Create New Page/LiveSDK-for-Android-master/sample/res/layout/view_profile.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 13 |