Skip to content

Commit 05645c2

Browse files
committed
Added conversion Demos
1 parent eaac4d5 commit 05645c2

File tree

279 files changed

+100886
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

279 files changed

+100886
-0
lines changed

Demos/.gitignore

Lines changed: 221 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,221 @@
1+
# The following command works for downloading when using Git for Windows:
2+
# curl -LOf http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
3+
#
4+
# Download this file using PowerShell v3 under Windows with the following comand:
5+
# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
6+
#
7+
# or wget:
8+
# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
9+
10+
# User-specific files
11+
*.suo
12+
*.sln.docstates
13+
14+
# Build results
15+
[Dd]ebug/
16+
[Rr]elease/
17+
x64/
18+
[Bb]in/
19+
[Oo]bj/
20+
# build folder is nowadays used for build scripts and should not be ignored
21+
#build/
22+
23+
# NuGet Packages
24+
*.nupkg
25+
# The packages folder can be ignored because of Package Restore
26+
**/packages/*
27+
# except build/, which is used as an MSBuild target.
28+
!**/packages/build/
29+
# Uncomment if necessary however generally it will be regenerated when needed
30+
#!**/packages/repositories.config
31+
32+
# MSTest test Results
33+
[Tt]est[Rr]esult*/
34+
[Bb]uild[Ll]og.*
35+
36+
*_i.c
37+
*_p.c
38+
*.ilk
39+
*.meta
40+
*.obj
41+
*.pch
42+
*.pdb
43+
*.pgc
44+
*.pgd
45+
*.rsp
46+
*.sbr
47+
*.tlb
48+
*.tli
49+
*.tlh
50+
*.tmp
51+
*.tmp_proj
52+
*.log
53+
*.vspscc
54+
*.vssscc
55+
.builds
56+
*.pidb
57+
*.log
58+
*.scc
59+
60+
# OS generated files #
61+
.DS_Store*
62+
Icon?
63+
64+
# Visual C++ cache files
65+
ipch/
66+
*.aps
67+
*.ncb
68+
*.opensdf
69+
*.sdf
70+
*.cachefile
71+
72+
# Visual Studio profiler
73+
*.psess
74+
*.vsp
75+
*.vspx
76+
77+
# Guidance Automation Toolkit
78+
*.gpState
79+
80+
# ReSharper is a .NET coding add-in
81+
_ReSharper*/
82+
*.[Rr]e[Ss]harper
83+
84+
# TeamCity is a build add-in
85+
_TeamCity*
86+
87+
# DotCover is a Code Coverage Tool
88+
*.dotCover
89+
90+
# NCrunch
91+
*.ncrunch*
92+
.*crunch*.local.xml
93+
94+
# Installshield output folder
95+
[Ee]xpress/
96+
97+
# DocProject is a documentation generator add-in
98+
DocProject/buildhelp/
99+
DocProject/Help/*.HxT
100+
DocProject/Help/*.HxC
101+
DocProject/Help/*.hhc
102+
DocProject/Help/*.hhk
103+
DocProject/Help/*.hhp
104+
DocProject/Help/Html2
105+
DocProject/Help/html
106+
107+
# Click-Once directory
108+
publish/
109+
110+
# Publish Web Output
111+
*.Publish.xml
112+
113+
# Windows Azure Build Output
114+
csx
115+
*.build.csdef
116+
117+
# Windows Store app package directory
118+
AppPackages/
119+
120+
# Others
121+
*.Cache
122+
ClientBin/
123+
[Ss]tyle[Cc]op.*
124+
~$*
125+
*~
126+
*.dbmdl
127+
*.[Pp]ublish.xml
128+
*.pfx
129+
*.publishsettings
130+
modulesbin/
131+
tempbin/
132+
133+
# EPiServer Site file (VPP)
134+
AppData/
135+
136+
# RIA/Silverlight projects
137+
Generated_Code/
138+
139+
# Backup & report files from converting an old project file to a newer
140+
# Visual Studio version. Backup files are not needed, because we have git ;-)
141+
_UpgradeReport_Files/
142+
Backup*/
143+
UpgradeLog*.XML
144+
UpgradeLog*.htm
145+
146+
# vim
147+
*.txt~
148+
*.swp
149+
*.swo
150+
151+
# Temp files when opening LibreOffice on ubuntu
152+
.~lock.*
153+
154+
# svn
155+
.svn
156+
157+
# CVS - Source Control
158+
**/CVS/
159+
160+
# Remainings from resolving conflicts in Source Control
161+
*.orig
162+
163+
**/Assets/SourceFiles
164+
**/Assets/OutputFiles
165+
166+
#LightSwitch generated files
167+
GeneratedArtifacts/
168+
_Pvt_Extensions/
169+
ModelManifest.xml
170+
171+
# =========================
172+
# Windows detritus
173+
# =========================
174+
175+
# Windows image file caches
176+
Thumbs.db
177+
ehthumbs.db
178+
179+
# Folder config file
180+
Desktop.ini
181+
182+
# Recycle Bin used on file shares
183+
$RECYCLE.BIN/
184+
185+
# Mac desktop service store files
186+
.DS_Store
187+
188+
# SASS Compiler cache
189+
.sass-cache
190+
191+
# Visual Studio 2014 CTP
192+
**/*.sln.ide
193+
194+
# Visual Studio temp something
195+
.vs/
196+
197+
# dotnet stuff
198+
project.lock.json
199+
200+
# VS 2015+
201+
*.vc.vc.opendb
202+
*.vc.db
203+
204+
# Rider
205+
.idea/
206+
207+
# Visual Studio Code
208+
.vscode/
209+
210+
# Output folder used by Webpack or other FE stuff
211+
**/node_modules/*
212+
**/wwwroot/*
213+
214+
# SpecFlow specific
215+
*.feature.cs
216+
*.feature.xlsx.*
217+
*.Specs_*.html
218+
219+
#####
220+
# End of core ignore list, below put you custom 'per project' settings (patterns or path)
221+
#####

Demos/.runsettings

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<RunSettings>
3+
<RunConfiguration>
4+
<MaxCpuCount>0</MaxCpuCount>
5+
</RunConfiguration>
6+
7+
<MSTest>
8+
<Parallelize>
9+
<Workers>0</Workers>
10+
<Scope>MethodLevel</Scope>
11+
</Parallelize>
12+
</MSTest>
13+
</RunSettings>

Demos/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Aspose.Tasks Cloud for .NET Live Demos
2+
3+
Aspose.Tasks Cloud for .NET Live Demos Source Code.
4+
5+
# How to run
6+
7+
1. Clone the repository
8+
2. Open the solution file in the latest version of Microsoft Visual Studio.
9+
3. Set Default as start page
10+
4. Build the solution
11+
5. Set App Key and App SID values in web.config
12+
6. You can get the App SID and App Key from https://dashboard.aspose.cloud
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.572
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspose.Tasks.Cloud.Live.Demos.UI", "src\Aspose.Tasks.Cloud.Live.Demos.UI\Aspose.Tasks.Cloud.Live.Demos.UI.csproj", "{B55E137C-232D-4140-8541-155720CAC7C3}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{B55E137C-232D-4140-8541-155720CAC7C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{B55E137C-232D-4140-8541-155720CAC7C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{B55E137C-232D-4140-8541-155720CAC7C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{B55E137C-232D-4140-8541-155720CAC7C3}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {6CF5712F-2ADE-46E0-B733-2FCF852C3032}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/Scripts/bootstrap*
2+
/Scripts/jquery*
3+
/Scripts/modernizr*
4+
/Scripts/respond*
5+
/Scripts/popper*
6+
/Scripts/esm/**
7+
/Scripts/umd/**
8+
/Scripts/WebForms/**
9+
/ViewerApp/qi/js/**
10+
/Editor/Trumbowyg/**
11+
/Editor/jquery*
12+
/js/bootstrap*
13+
/js/jquery*
14+
/js/popper*
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<res name="ApplicationTitle">Aspose.Tasks Cloud Live Demos</res>
4+
<res name="ApplicationTitle2">Aspose.Tasks Cloud API for C#</res>
5+
<res name="HomePageTitle">Home</res>
6+
<res name="DownloadFileLinkTitle">Download your file</res>
7+
<res name="NoSearchResultsMessage">No search results</res>
8+
<res name="FileConvertedSuccessMessage">Your file has been converted successfully, please check your email to download converted file</res>
9+
<res name="InvalidFileExtension">Invalid file, please upload a file with extension</res>
10+
<res name="InvalidFile">Invalid file, please ensure that uploading correct file</res>
11+
<res name="FileAmountMessageOne">Please select only one file</res>
12+
<res name="FileAmountMessageLessTen">Please select less than ten files</res>
13+
<res name="btnConvertNow">CONVERT NOW</res>
14+
<res name="AsposeTasks">Aspose.Tasks Cloud</res>
15+
<res name="PageNotFound">404 Page not found</res>
16+
<res name="BrokenLinkTitle">The link you followed probably broken or the page has been moved</res>
17+
<res name="btnBackHome">Back to Home</res>
18+
<res name="FileSelectMessage">Please select a file to convert</res>
19+
<res name="SaveAs">Save as</res>
20+
<res name="tasksConversionSaveAsOptions">PDF,XLSX,MPP,XML,MPX,HTML,TXT,TIF,SVG,PNG,JPEG,XER</res>
21+
<res name="DropOrUploadFile">Drop or upload your file</res>
22+
<res name="DropOrUploadFiles">Drop or upload your files</res>
23+
<res name="tasksValidationExpression">.mpp|.xml|.mpt|.mpx</res>
24+
<res name="FileConvertedSuccessMessage1">Your file has been converted successfully</res>
25+
<res name="DownLoadNow">DOWNLOAD NOW</res>
26+
<res name="FileWrongTypeMessage">You are trying to upload document(s) of unsupported type: </res>
27+
<res name="tasksConversionPageTitle">Free online Microsoft Project MPP converter - Aspose File Format APIs</res>
28+
<res name="tasksConversionMetaDescription">Free Microsoft Project Online Converter. Convert Microsoft Project MPP &amp; XML files to many other formats.</res>
29+
<res name="tasksConversionTitle">Convert MS Project to PDF, TXT, HTML or Raster Images</res>
30+
<res name="tasksConversionSubTitle">100% free universal app for Microsoft Project documents conversion.</res>
31+
<!-- Conversion App - How To-->
32+
<res name="HowtoConversionTitle">How to convert {0} file using {1}</res>
33+
<res name="HowtoConversionFeature1">Click inside the file drop area to upload file or drag &amp; drop file.</res>
34+
<res name="HowtoConversionFeature2">Your file will be uploaded and will be converted to required format.</res>
35+
<res name="HowtoConversionFeature3">Download link of converted file will be available instantly after conversion.</res>
36+
<res name="WrongRegExpMessage">Wrong regular expression</res>
37+
<res name="ConvertAnotherFile">Convert another file</res>
38+
39+
<res name="AsposeProductFor"></res>
40+
41+
42+
<res name="Feature1">Fast and Easy Conversion</res>
43+
<res name="Feature1Description">Upload your document, choose the save format type and click on “Convert” button. You will get the download link as soon as the file is converted</res>
44+
<res name="Feature1TasksDescription">Upload your project (or select online), choose the save format type and click on “Convert” button. You will get the download link as soon as the file is converted</res>
45+
<res name="Feature2">Convert from Anywhere</res>
46+
<res name="Feature2Description">It works from all platforms including Windows, Mac, Android and iOS. All files are processed on our servers. No plugin or software installation required for you</res>
47+
<res name="Feature3">Conversion Quality</res>
48+
<res name="Feature3Description">. All files are processed using Aspose APIs, which are being used by many Fortune 100 companies across 114 countries</res>
49+
50+
<res name="PoweredBy">Powered by</res>
51+
<res name="Conversionh4">Conversion</res>
52+
53+
<res name="SaveAsDescription">Save as: {0}</res>
54+
<res name="ConversionCategory">conversion</res>
55+
<res name="AsposeProductFamilyInclude">{0} Product Family Includes</res>
56+
57+
<res name="ConversionFeature1">Fast and Easy Conversion</res>
58+
<res name="ConversionFeature1Description">Upload your document, choose the save format type and click on “Convert” button. You will get the download link as soon as the file is converted</res>
59+
<res name="ConversionFeature1TasksDescription">Upload your project (or select online), choose the save format type and click on “Convert” button. You will get the download link as soon as the file is converted</res>
60+
<res name="ConversionFeature2">Convert from Anywhere</res>
61+
<res name="ConversionFeature2Description">It works from all platforms including Windows, Mac, Android and iOS. All files are processed on our servers. No plugin or software installation required for you</res>
62+
<res name="ConversionFeature3">Conversion Quality</res>
63+
<res name="ConversionButton">CONVERT</res>
64+
<res name="ConversionAnotherFile">Convert other documents</res>
65+
<res name="ConversionSuccessMessage">Your files have been processed successfully</res>
66+
67+
<res name="ConversionAction">Convert</res>
68+
</resources>
69+
70+
71+

0 commit comments

Comments
 (0)