-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a029c45
commit d4ba0e8
Showing
132 changed files
with
1,273 additions
and
810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3625" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3625" targetFramework="net451" /> | ||
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net451" /> | ||
</packages> |
Binary file modified
BIN
+0 Bytes
(100%)
CS/CalDAVServer.SqlStorage.AspNet/App_Data/WebDav/DB/WebDav.mdf
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
CS/CalDAVServer.SqlStorage.AspNet/App_Data/WebDav/DB/WebDav_log.ldf
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3625" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3625" targetFramework="net451" /> | ||
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net451" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3625" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3625" targetFramework="net451" /> | ||
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net451" /> | ||
</packages> |
Binary file modified
BIN
+0 Bytes
(100%)
CS/CardDAVServer.SqlStorage.AspNet/App_Data/WebDav/DB/WebDav.mdf
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
CS/CardDAVServer.SqlStorage.AspNet/App_Data/WebDav/DB/WebDav_log.ldf
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3609" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server" version="5.7.3625" targetFramework="net451" /> | ||
<package id="ITHit.WebDAV.Server.Web" version="5.7.3625" targetFramework="net451" /> | ||
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net451" /> | ||
</packages> |
Binary file removed
BIN
-2.94 MB
CS/HttpListenerMobile/.vs/HttpListenerMobile/v15/sqlite3/storage.ide
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
CS/HttpListenerMobile/HttpListener.Android/ListenerBroadcastReceiver.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using Android.Content; | ||
|
||
namespace HttpListener.Android | ||
{ | ||
/// <summary> | ||
/// Sends and outputs logs on activity. | ||
/// </summary> | ||
[BroadcastReceiver] | ||
public class ListenerBroadcastReceiver : BroadcastReceiver | ||
{ | ||
/// <summary> | ||
/// Activity instance (is used to update view). | ||
/// </summary> | ||
private MainActivity activity; | ||
|
||
/// <summary> | ||
/// Intent filter used by broadcast receiver. | ||
/// </summary> | ||
public static readonly string LOG_OUTPUT = "LOG_OUTPUT"; | ||
|
||
/// <summary> | ||
/// Creates new instance of this class. | ||
/// </summary> | ||
public ListenerBroadcastReceiver() { } | ||
|
||
/// <summary> | ||
/// Creates new instance of this class. | ||
/// </summary> | ||
/// <param name="activity">Activity instance to update textview.</param> | ||
public ListenerBroadcastReceiver(MainActivity activity) | ||
{ | ||
this.activity = activity; | ||
} | ||
|
||
public override void OnReceive(Context context, Intent intent) | ||
{ | ||
activity.Output(intent.GetStringExtra("message")); | ||
} | ||
} | ||
} |
Oops, something went wrong.