This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
forked from LeonZhang77/WindowsWebAppGallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebApplicationList.xml
7722 lines (7616 loc) · 424 KB
/
WebApplicationList.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<webpiFile version="5.0.0.0" />
<title>Web Platform Installer 5.0 Application Feed</title>
<link rel="self" href="https://webgallery.microsoft.com/feed/webapplicationlist.xml" />
<updated>2013-07-03T22:10:13Z</updated>
<author>
<name>Microsoft</name>
</author>
<id>https://webgallery.microsoft.com/feed/webapplicationlist.xml</id>
<resourcesList>
<resources>
<culture>en</culture>
<!-- test included in file -->
</resources>
<resources>
<culture>de</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_de.xml</url>
</resources>
<resources>
<culture>es</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_es.xml</url>
</resources>
<resources>
<culture>fr</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_fr.xml</url>
</resources>
<resources>
<culture>it</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_it.xml</url>
</resources>
<resources>
<culture>ja</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_ja.xml</url>
</resources>
<resources>
<culture>ko</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_ko.xml</url>
</resources>
<resources>
<culture>ru</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_ru.xml</url>
</resources>
<resources>
<culture>zh-cn</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_zh-cn.xml</url>
</resources>
<resources>
<culture>zh-tw</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_zh-tw.xml</url>
</resources>
<resources>
<culture>zh-hk</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_zh-tw.xml</url>
</resources>
<resources>
<culture>cs</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_cs.xml</url>
</resources>
<resources>
<culture>pl</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_pl.xml</url>
</resources>
<resources>
<culture>tr</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_tr.xml</url>
</resources>
<resources>
<culture>pt-br</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_pt-br.xml</url>
</resources>
<resources>
<culture>he</culture>
<url>https://webgallery.microsoft.com/feed/resources/WebApplicationList_he.xml</url>
</resources>
</resourcesList>
<languages>
<language default="true">
<languageId>en</languageId>
<name>English</name>
</language>
</languages>
<!-- SmartStoreNET-->
<entry type="application">
<productId>SmartStoreNET</productId>
<title resourceName="Entry_SmartStoreNET_Title">SmartStore.NET</title>
<id>http://www.microsoft.com/web/webpi/2.0/SmartStoreNET</id>
<summary resourceName="Entry_SmartStoreNET_Summary">SmartStore.NET is a free, open source, full-featured e-commerce solution for companies of any size. It is web standards compliant and incorporates the newest Microsoft web technology stack.</summary>
<updated>2017-05-15T00:00:00Z</updated>
<published>2017-09-21T12:39:19Z</published>
<longSummary resourceName="Entry_SmartStoreNET_LongSummary">
SmartStore.NET is a free, open source, full-featured e-commerce solution for companies of any size. It is web standards compliant and incorporates the newest Microsoft web technology stack.
SmartStore.NET includes all essential features to create multilingual and multi-currency stores targeting desktop or mobile devices and enabling SEO optimized rich product catalogs with support for an unlimited number of products and categories, variants, bundles, datasheets, ESD, discounts, coupons and many more.
A comprehensive set of tools for CRM & CMS, sales, marketing, payment & shipping handling, etc. makes SmartStore.NET a powerful all-in-one solution fulfilling all your needs.
SmartStore.NET delivers a beautiful and configurable shop front-end out-of-the-box, built with a design approach on the highest level, including components like Bootstrap 4, Sass and others. The supplied theme Flex is modern, clean and fully responsive, giving buyers the best possible shopping experience on any device.
The state-of-the-art architecture of SmartStore.NET - with ASP.NET 4.5 + MVC 5, Entity Framework 6 and Domain Driven Design approach - makes it easy to extend, extremely flexible and essentially fun to work with ;-)
</longSummary>
<version>3.0.3</version>
<link href="http://community.smartstore.com/" />
<author>
<name>SmartStore AG</name>
<uri>http://www.smartstore.com</uri>
</author>
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-screenshot5</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SmartStoreNET-screenshot6</screenshot>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
<keywordId>eCommerce</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<dependency>
<and>
<dependency idref="MVC4App" />
<dependency idref="SQL_ASPNET45App" />
<dependency idref="ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>92943</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=SmartStoreNET&version=3.0.3&applang=en</trackingURL>
<installerURL>https://github.com/smartstoreag/SmartStoreNET/releases/download/3.0.3/SmartStoreNET.WebPI.3.0.3.zip</installerURL>
<sha1>a9d362dea0ae5f6f302a974d4db8df8f2238a316</sha1>
</installerFile>
<msDeploy>
<startPage>/</startPage>
</msDeploy>
<helpLink>http://community.smartstore.com/</helpLink>
</installer>
</installers>
<addToFeedDate>10-04-2013</addToFeedDate>
<pageName>SmartStoreNET</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- mycv-->
<entry type="application">
<productId>mycv</productId>
<title resourceName="Entry_mycv_Title">My CV</title>
<id>http://www.microsoft.com/web/webpi/2.0/mycv</id>
<summary resourceName="Entry_mycv_Summary">Create standout CVs for you and your friends and family in minutes, share your CVs online or export to a word document. All on your own domain or web space of your choice.</summary>
<updated>2016-02-19T02:05:43Z</updated>
<published>2016-02-19T02:05:43Z</published>
<longSummary resourceName="Entry_mycv_LongSummary">Create standout CVs for you and your friends and family in minutes, share your CVs online or export to a word document. All on your own domain or web space of your choice.</longSummary>
<version>1.0</version>
<link href="http://www.netatck.com/cv/hilfe.aspx" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/mycv-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/mycv-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/mycv-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/mycv-screenshot3</screenshot>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
</keywords>
<author>
<name>Netatck</name>
<uri>http://www.netatck.com</uri>
</author>
<dependency>
<and>
<dependency idref="ASPNET45App" />
<dependency>
<productId>UrlRewrite2</productId>
</dependency>
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>18329</fileSize>
<trackingURL>http://www.microsoft.com/web/handlers/webpi.ashx?command=incrementappdownloadcount&appid=mycv&version=1.0&applang=de</trackingURL>
<installerURL>http://www.netatck.com/cv/cv-installer.zip</installerURL>
<sha1>03454840c585d5dba00e245592f6329b9f913429</sha1>
</installerFile>
<msDeploy />
<helpLink>http://www.netatck.com/cv/hilfe.aspx</helpLink>
</installer>
<installer>
<id>2</id>
<languageId>de</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>18329</fileSize>
<trackingURL>http://www.microsoft.com/web/handlers/webpi.ashx?command=incrementappdownloadcount&appid=mycv&version=1.0&applang=de</trackingURL>
<installerURL>http://www.netatck.com/cv/cv-installer.zip</installerURL>
<sha1>03454840c585d5dba00e245592f6329b9f913429</sha1>
</installerFile>
<msDeploy />
<helpLink>http://www.netatck.com/cv/hilfe.aspx</helpLink>
</installer>
</installers>
<addToFeedDate>02-19-2016</addToFeedDate>
<pageName>mycv</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!--Cventure-->
<entry type="application">
<productId>CVenture</productId>
<title resourceName="Entry_CVenture_Title">CVenture</title>
<id>http://www.microsoft.com/web/webpi/2.0/CVenture</id>
<summary resourceName="Entry_CVenture_Summary">Cventure is a ASP.Net based CRM Application that takes care of complete Sales life cycle (Enquiry management, Quotes, follow ups, sales order. Etc.) , invoicing, Payment tracking, Purchase management , Customer Support management etc. CVenture is a completely free. All you need to do is register at http://www.cventure.in and obtain a free license key and start using it.</summary>
<updated>2016-01-05T18:06:13Z</updated>
<published>2016-01-05T18:06:13Z</published>
<longSummary resourceName="Entry_CVenture_LongSummary">
Cventure is a ASP.Net based CRM Application that takes care of complete Sales life cycle (Enquiry management, Quotes, follow ups, sales order. Etc.) , invoicing, Payment tracking, Purchase management , Customer Support management etc. CVenture is a completely free. All you need to do is register at http://www.cventure.in and obtain a free license key and start using it.
CVenture CRM is made up of many modules EQMS (Enquiry management system), Purchase and payment tracking, SMS (Support management system) etc. EQMS covers complete sales life cycle, like managing sales team, sales enquiries , quotes , follow-ups, sales orders, delivery notes, sales invoicing, etc. many other features ensures that there is complete communication with sales team and customers. Support Management system (SMS) covers complete after sales support to customer with many features like complaint management / Ticket management, Project management, Repair Registers, To-Do’s , attendance management etc. SMS also consists of Customer portal for customers to track their complaints . There are many other features in CVenture. Application is completely free, and we only charge on support and customizations.
</longSummary>
<version>5.02.04.003</version>
<link href="http://www.cventure.in" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cventure-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cventure-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cventure-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cventure-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cventure-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cventure-screenshot5</screenshot>
</images>
<keywords>
<keywordId>eCommerce</keywordId>
<keywordId>Tools</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>Chamunda Tech-Net Service Private Limited</name>
<uri>http://www.ctns.info</uri>
</author>
<dependency>
<and>
<dependency idref="SQL_ASPNET4App_IIS" />
<dependency idref="ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>58282</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=CVenture&version=5.02.04.003&applang=en</trackingURL>
<installerURL>http://www.cventure.in/home_page.aspx?download=15</installerURL>
<sha1>73802E55F465142657AB536B8C100131CAB4EDDE</sha1>
</installerFile>
<msDeploy>
<startPage>/CompanySelection.aspx</startPage>
</msDeploy>
<helpLink>http://www.cventure.in</helpLink>
</installer>
</installers>
<addToFeedDate>10-24-2015</addToFeedDate>
<pageName>CVenture</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- OrchardCollaboration-->
<entry type="application">
<productId>OrchardCollaboration</productId>
<title resourceName="Entry_OrchardCollaboration_Title">Orchard Collaboration</title>
<id>http://www.microsoft.com/web/webpi/2.0/OrchardCollaboration</id>
<summary resourceName="Entry_OrchardCollaboration_Summary">Orchard Collaboration is a free, open source ticketing system, project management and collaboration framework build on top of the Orchard CMS. It natively integrates with Orchard CMS and extends its features by allowing its users to collaboratively work on the content or by simplifying communication with the customers.</summary>
<updated>2016-01-30T00:00:00Z</updated>
<published>2017-02-07T11:03:12Z</published>
<longSummary resourceName="Entry_OrchardCollaboration_LongSummary">Orchard Collaboration is a free, open source ticketing system, project management and collaboration framework build on top of the Orchard CMS. It natively integrates with Orchard CMS and extends its features by allowing its users to collaboratively work on the content or by simplifying communication with the customers.</longSummary>
<version>2.6</version>
<link href="http://Orchardcollaboration.com" />
<author>
<name>Siyamand Ayubi</name>
<uri>http://Orchardcollaboration.com</uri>
</author>
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/OrchardCollaboration-logo</icon>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
<keywordId>Wiki</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<dependency>
<and>
<dependency idref="MVC4App" />
<dependency idref="SQL_ASPNET45App" />
<dependency idref="ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>64583</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=OrchardCollaboration&version=2.6&applang=en</trackingURL>
<installerURL>https://github.com/siyamandayubi/Orchardcollaboration/releases/download/2.6/Orchard.Collaboration.2.6.Web.zip</installerURL>
<sha1>d0771e75e86d9ec5b44868648d903464c51aa4f7</sha1>
</installerFile>
<msDeploy>
<startPage>/</startPage>
</msDeploy>
<helpLink>http://Orchardcollaboration.com</helpLink>
</installer>
</installers>
<addToFeedDate>04-29-2016</addToFeedDate>
<pageName>OrchardCollaboration</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- JokulForum-->
<entry type="application">
<productId>JokulForum</productId>
<title resourceName="Entry_JokulForum_Title">Jokul Forum</title>
<id>http://www.microsoft.com/web/webpi/2.0/JokulForum</id>
<summary resourceName="Entry_JokulForum_Summary">Jokul Forum is a lightweight modern discussion forum developed in C# with ASP.NET MVC. </summary>
<updated>2015-11-02T19:45:03Z</updated>
<published>2015-11-02T19:45:03Z</published>
<longSummary resourceName="Entry_JokulForum_LongSummary">Jokul Forum is a lightweight modern discussion forum developed in C# with ASP.NET MVC. </longSummary>
<version>1.6.0.0</version>
<link href="http://jokul.net" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/jokulforum-logo</icon>
</images>
<keywords>
<keywordId>Forums</keywordId>
<keywordId>Tools</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>Jokul</name>
<uri>http://jokul.net</uri>
</author>
<dependency>
<and>
<dependency idref="MVC4App" />
<dependency idref="SQL_ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>zh-cn</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>7589</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=JokulForum&version=1.6.0.0&applang=zh-cn</trackingURL>
<installerURL>http://www.jokul.net/Product/Jokul.Forum/1.6.0.0/Jokul.Forum.1.6.0.0.Full.Net40.wpi.zip</installerURL>
<sha1>A99307F589066BC630F15101224FB0190B4EF25F</sha1>
</installerFile>
<msDeploy />
<helpLink>http://jokul.net</helpLink>
</installer>
</installers>
<addToFeedDate>11-02-2015</addToFeedDate>
<pageName>JokulForum</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- BeYourMarket-->
<entry type="application">
<productId>BeYourMarket</productId>
<title resourceName="Entry_BeYourMarket_Title">BeYourMarket</title>
<id>http://www.microsoft.com/web/webpi/2.0/BeYourMarket</id>
<summary resourceName="Entry_BeYourMarket_Summary">BeYourMarket is an open source platform that makes it incredibly easy to build peer-to-peer marketplaces. Bootstrap your marketplace in just minutes!</summary>
<updated>2015-09-15T19:38:13Z</updated>
<published>2015-09-15T19:38:13Z</published>
<longSummary resourceName="Entry_BeYourMarket_LongSummary">
BeYourMarket is an open source platform that makes it incredibly easy to build peer-to-peer marketplaces. Bootstrap your marketplace in just minutes!
Technologies: ASP.NET MVC, Web API, C#, HTML5
</longSummary>
<version>1.3.0beta</version>
<link href="http://github.com/beyourmarket/beyourmarket/" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/beyourmarket-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/beyourmarket-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/beyourmarket-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/beyourmarket-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/beyourmarket-screenshot4</screenshot>
</images>
<keywords>
<keywordId>eCommerce</keywordId>
<keywordId>AppFrameworks</keywordId>
<keywordId>SQL</keywordId>
<keywordId>SQLCE</keywordId>
</keywords>
<author>
<name>http://beyourmarket.com</name>
<uri>http://beyourmarket.com</uri>
</author>
<dependency>
<and>
<dependency idref="MVC4App" />
<dependency idref="SQL_ASPNET45App" />
<dependency idref="ASPNET4App" />
<dependency>
<productId>UrlRewrite2</productId>
</dependency>
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>22884</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=BeYourMarket&version=1.3.0beta&applang=en</trackingURL>
<installerURL>http://beyourmarket.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=1480969</installerURL>
<sha1>fa64f9ee2c05aad7fdc71f955bf15fa3fea1ec1b</sha1>
</installerFile>
<msDeploy />
<helpLink>http://github.com/beyourmarket/beyourmarket/</helpLink>
</installer>
</installers>
<addToFeedDate>09-15-2015</addToFeedDate>
<pageName>BeYourMarket</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- SepPortal14-->
<entry type="application">
<productId>SepCityCMS</productId>
<title resourceName="Entry_SepCityCMS_Title">SepCity CMS</title>
<id>http://www.microsoft.com/web/webpi/2.0/SepCityCMS</id>
<summary resourceName="Entry_SepCityCMS_Summary">SepCity membership portal software is built for the end user to have complete control of their website content without any knowledge of HTML or other programming languages. Besides the portal package, SepCity in addition offers over 30 extra plugins you can add to your web portal. New customers get all the plugins activated FREE for 90 days enabling them to play with the entire portal package.</summary>
<updated>2018-03-14T00:00:00Z</updated>
<published>2018-04-10T17:45:58Z</published>
<longSummary resourceName="Entry_SepCityCMS_LongSummary">SepCity membership web portal software is built for the end user to have complete control of their website content without any knowledge of HTML or other programming languages. Besides the standard web portal package, SepCity has over 30 extra plugins you can add to your web portal at any time. New customers get all the plugins activated FREE for 90 days enabling them to play with the entire SepCity web portal package. The following are some of the plugins; Shopping Mall, Articles, Job board, Blogs, User Profiles, Polls, Business Directory/Listing, Classified ads, Event calendar, Real estate, User feeds, File downloads and much more.
Our web portal software is built to be user-friendly with options to control access to membership groups. Our web portal software platform is built to be SEO friendly without any additional addons. SepCity is built from ground up so there are no 3rd party's our customers have to deal with unless they opt to activate any third-party integrations we provide such as; SMS messaging, shipping calculators, CloudFlare for CDN and others.
Should you have any questions regarding SepCity please contact us at any time.</longSummary>
<version>2.7</version>
<link href="https://www.sepcity.com/support/" />
<author>
<name>SepCity</name>
<uri>https://www.sepcity.com</uri>
</author>
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SepCityCMS-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SepCityCMS-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/SepCityCMS-screenshot6</screenshot>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
<keywordId>eCommerce</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<dependency idref="SQL_ASPNET4App" />
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>56558</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=SepCityCMS&version=2.7&applang=en</trackingURL>
<installerURL>http://www.sepcity.com/downloads/SepCity-2.7-IIS.zip</installerURL>
<sha1>A59D4BE6A267505629D977351857F9D853301E1A</sha1>
</installerFile>
<msDeploy>
<startPage>/default.aspx</startPage>
</msDeploy>
<helpLink>https://www.sepcity.com/support/</helpLink>
</installer>
</installers>
<addToFeedDate>07-01-2014</addToFeedDate>
<pageName>SepCityCMS</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!--Magento -->
<!-- <entry type="application"><productId>Magento</productId><title resourceName="Entry_Magento_Title">Magento</title><id>http://www.microsoft.com/web/webpi/2.0/Magento</id><summary resourceName="Entry_Magento_Summary">Deep development and technical resources, powerful and flexible technology and more than 200,000 customer sites combine to make Magento the choice of more eCommerce developers.</summary><updated>2015-10-27T00:00:00Z</updated><published>2017-03-23T16:20:36Z</published><longSummary resourceName="Entry_Magento_LongSummary">Magento Community Edition is perfect if you're a developer or tech-savvy merchant that wants to explore the flexibility of the Magento platform. You can modify – and even contribute to – the core code and engage with our passionate community for support and guidance.</longSummary><version>1.9.3.2</version><link href="http://magento.com/help/overview" /><author><name>AppDirect</name><uri>http://www.appdirect.com</uri></author><images><icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Magento-logo</icon><screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Magento-screenshot1</screenshot><screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Magento-screenshot2</screenshot><screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Magento-screenshot3</screenshot><screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Magento-screenshot4</screenshot><screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Magento-screenshot5</screenshot></images><keywords><keywordId>eCommerce</keywordId><keywordId>MySQL</keywordId></keywords><dependency><and><dependency idref="PHP56App" /><dependency idref="MySQLApp" /></and></dependency><installers><installer><id>1</id><languageId>en</languageId><osList idref="SupportedAppPlatforms" /><installerFile><fileSize>35265</fileSize><trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=Magento&version=1.9.3.2&applang=en</trackingURL><installerURL>http://closest.repo.standingcloud.net/repo/azure/packages/magento-1.9.3.2.zip</installerURL><sha1>382366499cd19f0860acfb2f1bd322423fe8da62</sha1></installerFile><msDeploy><startPage>/index.php/install</startPage></msDeploy><helpLink>http://magento.com/help/overview</helpLink></installer></installers><addToFeedDate>10-15-2014</addToFeedDate><pageName>Magento</pageName><productFamily resourceName="Applications">Applications</productFamily></entry> -->
<!-- Concrete5-->
<entry type="application">
<productId>Concrete5</productId>
<title resourceName="Entry_Concrete5_Title">Concrete5</title>
<id>http://www.microsoft.com/web/webpi/2.0/Concrete5</id>
<summary resourceName="Entry_Concrete5_Summary">Concrete5 is an open source content management system that makes running a website easy.</summary>
<updated>2016-04-28T00:00:00Z</updated>
<published>2016-09-15T23:30:18Z</published>
<longSummary resourceName="Entry_Concrete5_LongSummary">Concrete5 is an open source content management system that makes running a website easy. Go to any page in your site, and an editing toolbar gives you all the controls you need to update your website. No intimidating manuals, no complicated administration interfaces - just point and click. In-context editing for your clients, a flexible framework for your developers, an intuitive experience everyone can edit with the flexibility of an open source web builder.</longSummary>
<version>5.7.5.7</version>
<link href="https://www.concrete5.org/support" />
<author>
<name>AppDirect</name>
<uri>http://appdirect.com</uri>
</author>
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Concrete5-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Concrete5-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Concrete5-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Concrete5-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/Concrete5-screenshot4</screenshot>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
<keywordId>MySQL</keywordId>
</keywords>
<dependency>
<and>
<dependency idref="PHP56App" />
<dependency idref="MySQLApp" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>40553</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=Concrete5&version=5.7.5.7&applang=en</trackingURL>
<installerURL>http://closest.repo.standingcloud.net/repo/azure/packages/concrete5-5.7.5.7.zip</installerURL>
<sha1>0994a838725f63aba0e288d0a8a053d9577dd134</sha1>
</installerFile>
<msDeploy>
<startPage>/index.php/install</startPage>
</msDeploy>
<helpLink>https://www.concrete5.org/support</helpLink>
</installer>
</installers>
<addToFeedDate>06-01-2015</addToFeedDate>
<pageName>Concrete5</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- CDesk-->
<entry type="application">
<productId>CDesk</productId>
<title resourceName="Entry_CDesk_Title">C-Desk</title>
<id>http://www.microsoft.com/web/webpi/2.0/CDesk</id>
<summary resourceName="Entry_CDesk_Summary">C-Desk is a Asp.net Application like an intranet solution. With features like Service Desk management (Helpdesk), Customer care, Logbooks, Task management, Project management, Surveys & Polls, Knowledge base, Events and photo gallery, Notice board, asset management Etc. Active directory authentication, Integrates webmail like OWA,Roundcube. C-Desk brings teamwork.</summary>
<updated>2016-05-26T21:30:42Z</updated>
<published>2016-05-26T21:30:42Z</published>
<longSummary resourceName="Entry_CDesk_LongSummary">
C-Desk is a Asp.net Application built like an Tailor made intranet solution for organizations. A Complete helpdesk Solution And it is completely free, all you need to do is visit the website and register to get your free license key. (http://www.cdesk.in). With many features like Service Desk management (Help desk or Ticketing system), where all internal queries can be tracked and managed location wise. Customer care module helps to address queries and support to your customers depending on services used by customer location wise.
E-Logs (Logbooks) Centralizes your logbook data , replacing the manual registers, Task management ensures that the tasks are monitored by the reporting manager.
Surveys and polls enables the management to collect information easily from the employees and customers.. Knowledge base enables you to share the information to the whole organization in a structured way.
Asset management enabled you to keep the track of the assets location wise until its lifecycle.. Notice board enables you to publish information to the users office wise or location wise or user wise. With many other features like Project management , Events and photo gallery, Birthday calendar, C-Desk becomes a highly unique application by itself. Further It also supports Active directory authentication, You can integrate your webmail Like Outlook web access or Roundcube. You can also integrate chat functions. C-Desk brings the whole organization together at work.
</longSummary>
<version>05.00.00.023</version>
<link href="http://www.cdesk.in" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-screenshot5</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/cdesk-screenshot6</screenshot>
</images>
<keywords>
<keywordId>Tools</keywordId>
<keywordId>Galleries</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>Chamunda Tech-Net Services Pvt.Ltd</name>
<uri>http://www.ctns.info</uri>
</author>
<dependency>
<and>
<dependency idref="SQL_ASPNET4App_IIS" />
<dependency idref="ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>39171</fileSize>
<trackingURL>http://www.microsoft.com/web/handlers/webpi.ashx?command=incrementappdownloadcount&appid=CDesk&version=05.00.00.023&applang=en</trackingURL>
<installerURL>http://www.cdesk.in/download.aspx?download=17</installerURL>
<sha1>A43460364E2AA7AC9121B59AF19157E968FAF89C</sha1>
</installerFile>
<msDeploy>
<startPage>/login.aspx</startPage>
</msDeploy>
<helpLink>http://www.cdesk.in</helpLink>
</installer>
</installers>
<addToFeedDate>02-22-2015</addToFeedDate>
<pageName>CDesk</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- ASPdatabaseNET-->
<entry type="application">
<productId>ASPdatabaseNET</productId>
<title resourceName="Entry_ASPdatabaseNET_Title">ASPdatabase.NET</title>
<id>http://www.microsoft.com/web/webpi/2.0/ASPdatabaseNET</id>
<summary resourceName="Entry_ASPdatabaseNET_Summary">ASPdatabase.NET is multi-user web app for viewing, managing and creating SQL Server tables. The admin features allow a developer to create and modify table structures. And the data grid allows for data entry users to view, sort, filter, edit, delete and export SQL Server tables. The multi-user features allows permission groups to be defined. Free version allows for 1 database and 1 user.</summary>
<updated>2015-02-07T05:56:55Z</updated>
<published>2015-02-07T05:56:55Z</published>
<longSummary resourceName="Entry_ASPdatabaseNET_LongSummary">
ASPdatabase.NET is multi-user web app for viewing, managing and creating Microsoft SQL Server tables. The admin features allow a developer to create and modify table structures. And the data grid allows for data entry users to view, sort, filter, edit, delete and export SQL Server tables. The multi-user features allows permission groups to be defined.
Version 2.0.7 works with Microsoft SQL Server databases while hosted on a Windows Server with IIS. Password encryption uses BCrypt for secure one-way password storage. All web UI controls communicate via Ajax service calls.
Free version allows for one database and one user. Paid subscriptions are based on number of users per month and allow for unlimited database connections.
</longSummary>
<version>2.0.7</version>
<link href="http://www.aspdatabase.net/about/" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/aspdatabasenet-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/aspdatabasenet-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/aspdatabasenet-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/aspdatabasenet-screenshot3</screenshot>
</images>
<keywords>
<keywordId>Tools</keywordId>
<keywordId>ContentMgmt</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>ASPdatabase.NET LLC</name>
<uri>http://www.aspdatabase.net/</uri>
</author>
<dependency>
<and>
<dependency idref="SQL_ASPNET4App_IIS" />
<dependency idref="ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>1620</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=ASPdatabaseNET&version=2.0.7&applang=en</trackingURL>
<installerURL>https://www.aspdatabase.net/download/DownloadApp.aspx?VersionKey=8C08903A-6435-4794-BC9E-091CBF59C228</installerURL>
<sha1>297479128f5dbc953283ed70f15c0fc408ab285c</sha1>
</installerFile>
<msDeploy>
<startPage>/ASPdatabase.NET.aspx</startPage>
</msDeploy>
<helpLink>http://www.aspdatabase.net/about/</helpLink>
</installer>
</installers>
<addToFeedDate>02-07-2015</addToFeedDate>
<pageName>ASPdatabaseNET</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- OpenCart-->
<entry type="application">
<productId>OpenCart</productId>
<title resourceName="Entry_OpenCart_Title">OpenCart</title>
<id>http://www.microsoft.com/web/webpi/2.0/OpenCart</id>
<summary resourceName="Entry_OpenCart_Summary">OpenCart is a turn-key ready "out of the box" shopping cart solution. You simply install, select your template, add products and you're ready to start accepting orders.</summary>
<updated>2016-03-02T00:00:00Z</updated>
<published>2016-09-15T23:00:07Z</published>
<longSummary resourceName="Entry_OpenCart_LongSummary">OpenCart is free open source ecommerce platform for online merchants. OpenCart provides a professional and reliable foundation from which to build a successful online store. This foundation appeals to a wide variety of users; ranging from seasoned web developers looking for a user-friendly interface to use, to shop owners just launching their business online for the first time. OpenCart has an extensive amount of features that gives you a strong hold over the customization of your store. With OpenCart's tools, you can help your online shop live up to its fullest potential.</longSummary>
<version>2.3.0.2</version>
<link href="http://www.opencart.com/index.php?route=support/support" />
<author>
<name>AppDirect</name>
<uri>http://www.appdirect.com</uri>
</author>
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/OpenCart-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/OpenCart-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/OpenCart-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/OpenCart-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/OpenCart-screenshot4</screenshot>
</images>
<keywords>
<keywordId>eCommerce</keywordId>
<keywordId>Tools</keywordId>
<keywordId>MySQL</keywordId>
</keywords>
<dependency>
<and>
<dependency idref="PHP56App" />
<dependency idref="MySQLApp" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>14178</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=OpenCart&version=2.3.0.2&applang=en</trackingURL>
<installerURL>http://closest.repo.standingcloud.net/repo/apps/azure/opencart-2.3.0.2.zip</installerURL>
<sha1>185ffbf7ab9480c543762fe447b3be317c9f9e44</sha1>
</installerFile>
<msDeploy>
<startPage>/install/index.php</startPage>
</msDeploy>
<helpLink>http://www.opencart.com/index.php?route=support/support</helpLink>
</installer>
</installers>
<addToFeedDate>10-15-2014</addToFeedDate>
<pageName>OpenCart</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- TYPO3CMS62-->
<entry type="application">
<productId>TYPO3CMS62</productId>
<title resourceName="Entry_TYPO3CMS62_Title">TYPO3 CMS 6.2 </title>
<id>http://www.microsoft.com/web/webpi/2.0/TYPO3CMS62</id>
<summary resourceName="Entry_TYPO3CMS62_Summary">TYPO3 CMS is the leading Enterprise Open Source CMS with a focus on the current needs of businesses and public institutions.</summary>
<updated>2015-07-17T20:41:27Z</updated>
<published>2015-07-17T20:41:27Z</published>
<longSummary resourceName="Entry_TYPO3CMS62_LongSummary">TYPO3 CMS is the leading Enterprise Open Source CMS. With more than 500,000 installations TYPO3 CMS is the most widely used Enterprise Content Management System, providing the basis for websites, intranets and web & mobile applications worldwide. No matter if you want to start a small but fancy website for your business or non-profit organization, need to grow your business by building a large and scaleable multi-lingual portal for your global enterprise or want to publish content across all kinds of devices including mobile - TYPO3 CMS is the right choice, enabling you to manage your content and assets - always with a focus on your current needs. TYPO3 CMS provides the basis for modern content management - always with a focus on the current needs of businesses and public institutions.</longSummary>
<version>6.2.14</version>
<link href="http://dkd.github.io/typo3-cms-azure/" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/typo3cms62-logo</icon>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
<keywordId>MySQL</keywordId>
</keywords>
<author>
<name>dkd Internet Service GmbH</name>
<uri>http://www.dkd.de/</uri>
</author>
<dependency>
<and>
<dependency idref="PHP56App" />
<dependency idref="MySQLApp" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>27832</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=TYPO3CMS62&version=6.2.14&applang=en</trackingURL>
<installerURL>https://github.com/dkd/typo3-cms-azure/releases/download/6.2.14/package.zip</installerURL>
<sha1>fe8bf064925f47ad5c268a268322bf2f66d104d5</sha1>
</installerFile>
<msDeploy>
<startPage>/index.php </startPage>
</msDeploy>
<helpLink>http://dkd.github.io/typo3-cms-azure/</helpLink>
</installer>
</installers>
<addToFeedDate>10-08-2014</addToFeedDate>
<pageName>TYPO3CMS62</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- OWA-->
<entry type="application">
<productId>OWA</productId>
<title resourceName="Entry_OWA_Title">OWA</title>
<id>http://www.microsoft.com/web/webpi/2.0/OWA</id>
<summary resourceName="Entry_OWA_Summary">Open Web Analytics (OWA) is open source web analytics software that you can use to track and analyze how people use your websites and applications.</summary>
<updated>2014-09-23T23:02:56Z</updated>
<published>2014-09-23T23:02:56Z</published>
<longSummary resourceName="Entry_OWA_LongSummary">Open Web Analytics (OWA) is open source web analytics software that you can use to track and analyze how people use your websites and applications. OWA is licensed under GPL and provides website owners and developers with easy ways to add web analytics to their sites using simple Javascript, PHP, or REST based APIs. OWA also comes with built-in support for tracking websites made with popular content management frameworks such as WordPress and MediaWiki. As a generic web analytics framework, OWA can be extended to track and analyze any web application.</longSummary>
<version>1.5.7</version>
<link href="http://www.openwebanalytics.com/?page_id=4" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/owa-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/owa-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/owa-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/owa-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/owa-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/owa-screenshot5</screenshot>
</images>
<keywords>
<keywordId>Tools</keywordId>
<keywordId>PHP</keywordId>
<keywordId>MySQL</keywordId>
<keywordId>AzureReady</keywordId>
</keywords>
<author>
<name>AppDirect</name>
<uri>http://www.appdirect.com/</uri>
</author>
<dependency>
<and>
<dependency idref="PHP56App" />
<dependency idref="MySQLApp" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>2313</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=OWA&version=1.5.7&applang=en</trackingURL>
<installerURL>http://closest.repo.standingcloud.net/repo/apps/azure/owa-1.5.7.zip</installerURL>
<sha1>c42c150e249e851bc3699a63b1b0f0ea10a63dc3</sha1>
</installerFile>
<msDeploy>
<startPage>/install.php</startPage>
</msDeploy>
<helpLink>http://www.openwebanalytics.com/?page_id=4</helpLink>
</installer>
</installers>
<addToFeedDate>09-23-2014</addToFeedDate>
<pageName>OWA</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- WEBAD-->
<entry type="application">
<productId>WEBAD</productId>
<title resourceName="Entry_WEBAD_Title">WEB AD</title>
<id>http://www.microsoft.com/web/webpi/2.0/WEBAD</id>
<summary resourceName="Entry_WEBAD_Summary">WebAD is a Web based AD user and group management app. It makes administration easier to manage users, reset password,activate deactivate accounts.Manage groups,etc. It also works as password self service tool. User with admin privilege can manage complete AD. Regular users can reset their passwords. You can Manage as many AD Servers from the application. and it works cross forest too..</summary>
<updated>2015-11-06T18:33:20Z</updated>
<published>2015-11-06T18:33:20Z</published>
<longSummary resourceName="Entry_WEBAD_LongSummary">WebAD Is a web based Active directory user and group management application. Developed in ASP.net. This makes administrative task easier to manage users, reset their passwords, activate or deactivate accounts. Manage groups, Manage group members. etc. This also works as password self service tool for the users. When user with administrative privileges logins to the application he can manage complete Active directory. When regular users logins to the portal they can manage only their properties and reset their passwords. You can Manage as many AD Servers from the application. and it works cross forest too.. This is very helpful tool when you don't want user to login to the ADMT to mess up with other settings. </longSummary>
<version>02.00.03.000</version>
<link href="http://www.cventure.in" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/webad-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/webad-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/webad-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/webad-screenshot3</screenshot>
</images>
<keywords>
<keywordId>Tools</keywordId>
<keywordId>Galleries</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>Chamunda Tech-Net Services Pvt.Ltd</name>
<uri>http://www.cventure.in</uri>
</author>
<dependency>
<and>
<dependency idref="SQL_ASPNET4App_IIS" />
<dependency idref="ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>8196</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=WEBAD&version=02.00.03.000&applang=en</trackingURL>
<installerURL>http://www.cventure.in/home_page.aspx?download=11</installerURL>
<sha1>9549475C42BC888D2AA4B9102EF12D4DDF44D077</sha1>
</installerFile>
<msDeploy>
<startPage>/loginpage.aspx</startPage>
</msDeploy>
<helpLink>http://www.cventure.in</helpLink>
</installer>
</installers>
<addToFeedDate>11-06-2015</addToFeedDate>
<pageName>WEBAD</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- ParallelCampus-->
<entry type="application">
<productId>ParallelCampus</productId>
<title resourceName="Entry_ParallelCampus_Title">Parallel Campus</title>
<id>http://www.microsoft.com/web/webpi/2.0/ParallelCampus</id>
<summary resourceName="Entry_ParallelCampus_Summary">Parallel Campus is the leading School/College management web application product. A solution with comprehensive feature that is easy to implement and use. It has all the basic and advanced modules such as Student Information System, Staff Information System,Mobile Attendance Register, Finance & Payroll Management,Library,Transport Management, SMS Alerts, Exchange/Smarter Mail Integration.</summary>
<updated>2014-07-09T22:13:00Z</updated>
<published>2014-07-09T22:13:00Z</published>
<longSummary resourceName="Entry_ParallelCampus_LongSummary">Parallel Campus is the leading campus management application for the microsoft web platform that empowers you to manage your School/College with access to staff, students and parents.It is easy to use and has all the modules of campus management such as Student Information System, Staff Information System, Finance & Payroll, Library, Transport, Gradebook, SMS & Email Communication,Mobile Attendance Register, Assignment,Lesson Plan, Event, Hostel, Placement,Document Management.To learn more about ParallelCampus, check out our demo.parallelcampus.com site and docs.parallelcampus.com. This free edition allows one concurrent staff and unlimited students and parents. There is no limit on the number of staff, students or parents that you can create and store in the database.</longSummary>
<version>1.0.0</version>
<link href="http://docs.parallelcampus.com" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-screenshot5</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/parallelcampus-screenshot6</screenshot>
</images>
<keywords>
<keywordId>Tools</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>Parallel Campus</name>
<uri>http://www.parallelcampus.com</uri>
</author>
<dependency idref="SQL_ASPNET4App" />
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>19115</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=ParallelCampus&version=1.0.0&applang=en</trackingURL>
<installerURL>http://www.parallelcampus.com/app/pc.zip</installerURL>
<sha1>edafeea42c22ac89f8a9b6711826f4e4e5edd8d5</sha1>
</installerFile>
<msDeploy>
<startPage>/install/install.aspx</startPage>
</msDeploy>
<helpLink>http://docs.parallelcampus.com</helpLink>
</installer>
</installers>
<addToFeedDate>06-20-2014</addToFeedDate>
<pageName>ParallelCampus</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- BetterCMS-->
<entry type="application">
<productId>BetterCMS</productId>
<title resourceName="Entry_BetterCMS_Title">Better CMS</title>
<id>http://www.microsoft.com/web/webpi/2.0/BetterCMS</id>
<summary resourceName="Entry_BetterCMS_Summary">Better CMS makes any user feel like a veteran web editor with it simple, intuitive and customizable publishing workflow. Built on ASP.Net MVC platform, natively adaptive, SEO friendly, and cloud integration ready, the power of your website and content is back in your hands.</summary>
<updated>2016-01-18T02:05:42Z</updated>
<published>2016-01-18T02:05:42Z</published>
<longSummary resourceName="Entry_BetterCMS_LongSummary">Better CMS makes any user feel like a veteran web editor with its simple, intuitive and customizable publishing workflow. Built on ASP.Net MVC platform, natively adaptive, SEO friendly, and cloud and mobile integration ready, the power of your website and content is back in your hands.With other notable features like an intuitive user-interface, security rules for users, automatic updates, and flexibility in design and UX functions, Better CMS is an easy answer for your web content management needs. Customers like Load Delivered, Monotype and the Academy of Nutrition and Dietetics have chosen Better CMS as its platform of choice. To learn more about Better CMS’ capabilities, check out our demo.bettercms.com site or its wiki page on GitHub.</longSummary>
<version>2.0.0</version>
<link href="http://www.bettercms.com/support/" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/bettercms-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/bettercms-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/bettercms-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/bettercms-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/bettercms-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/bettercms-screenshot5</screenshot>
</images>
<keywords>
<keywordId>ContentMgmt</keywordId>
<keywordId>Blogs</keywordId>
<keywordId>SQL</keywordId>
</keywords>
<author>
<name>Devbridge Group</name>
<uri>http://www.bettercms.com</uri>
</author>
<dependency>
<and>
<dependency idref="MVC4App" />
<dependency idref="SQL_ASPNET4App" />
</and>
</dependency>
<installers>
<installer>
<id>1</id>
<languageId>en</languageId>
<osList idref="SupportedAppPlatforms" />
<installerFile>
<fileSize>24296</fileSize>
<trackingURL>https://webpihandler.azurewebsites.net/webpi.ashx?command=incrementappdownloadcount&appid=BetterCMS&version=2.0.0&applang=en</trackingURL>
<installerURL>http://www.bettercms.com/installer/bettercms.2.0.0.zip</installerURL>
<sha1>80f0a0968be30a02d84e089c2ed939f3e47d58a7</sha1>
</installerFile>
<msDeploy />
<helpLink>http://www.bettercms.com/support/</helpLink>
</installer>
</installers>
<addToFeedDate>02-07-2014</addToFeedDate>
<pageName>BetterCMS</pageName>
<productFamily resourceName="Applications">Applications</productFamily>
</entry>
<!-- MonoX-->
<entry type="application">
<productId>MonoX</productId>
<title resourceName="Entry_MonoX_Title">MonoX</title>
<id>http://www.microsoft.com/web/webpi/2.0/MonoX</id>
<summary resourceName="Entry_MonoX_Summary">MonoX is an easy to use CMS and Social Networking Platform for ASP.NET, built on top of the Web Parts framework. Its responsive user interface is compatible with modern Web browsers, allowing for intuitive, drag-and drop interaction with the portal parts. In addition to the 50 built-in Web parts, it supports localization, personalization, cloud data storage, SEO and many more advanced features.</summary>
<updated>2015-07-17T20:41:27Z</updated>
<published>2015-07-17T20:41:27Z</published>
<longSummary resourceName="Entry_MonoX_LongSummary">
MonoX is an easy to use CMS and Social Networking Platform for ASP.NET, built on top of the Web Parts framework. Due to its rich feature set, standards compliance and easy deployment, MonoX portal engine is ideal for small and medium size business. Additionally, it also supports multiple caching scenarios, support for responsive design and advanced personalization, portal networks, provider-based infrastructure, cloud data storage and similar enterprise-level features. It is available free of cost for both commercial and non-commercial usage.
MonoX comes with more than 50 core Web parts and a complete infrastructure that allows .NET developers to customize both front-end and functionality of their applications. Its key features include:
interactive user interface compatible with modern Web browsers, full support for the ASP.NET Web parts framework, a fully featured set of components needed to build advanced social environments, standards compliance, SEO features,
scalable and robust architecture,
standardized plug-and-play modules and open API, high performance and a flexible data layer and unprecedented ease of use.
Non-technical users can administer most of the aspects of the working portal. MonoX employs standard WYSIWYG editors, file manager mimics the look and feel of the standard Windows explorer, etc. It fully supports offline editing tools based on MetaWeblog API, including Microsoft Windows LiveWriter.
</longSummary>
<version>5.1.40.5152</version>
<link href="http://www.mono-software.com/support/mono/" />
<images>
<icon>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-logo</icon>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-screenshot1</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-screenshot2</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-screenshot3</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-screenshot4</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-screenshot5</screenshot>
<screenshot>https://webgalleryappimages.blob.core.windows.net/logos-screenshots/monox-screenshot6</screenshot>