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
using System; | |
using System.Data; | |
using System.Data.Common; | |
using System.Data.SQLite; | |
using NUnit.Framework; | |
namespace MyApplication.Tests | |
{ | |
[TestFixture] | |
public class SQLiteForeignKeysTests |
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
using Castle.DynamicProxy; | |
namespace MyCompany.Infrastructure.Validation | |
{ | |
public static class ValidationListenerExtensions | |
{ | |
public static bool ListenAll( | |
this IValidationListener listener, | |
params IValidator[] validators) | |
{ |
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
namespace MyCompany.Infrastructure.Validation | |
{ | |
// implemented in UI layer | |
public interface IValidationListener | |
{ | |
void OnError(string error); | |
void OnWarning(string warning); | |
bool IsIgnored(string warning); | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using Castle.DynamicProxy; | |
using NUnit.Framework; | |
namespace MyApplication.Tests | |
{ | |
[TestFixture] |
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
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using Castle.DynamicProxy; | |
namespace MyCompany.Infrastructure | |
{ | |
class CloseConnectionInterceptor : IInterceptor | |
{ |
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
<!--[if gt IE 8]><!--> | |
<script type="text/javascript" src="blanket.js"></script> | |
<!--<![endif]--> |
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
Index: blanket.js | |
=================================================================== | |
--- blanket.js (wersja 21811) | |
+++ blanket.js (wersja 21812) | |
@@ -4442,7 +4442,10 @@ | |
}).length === 1; | |
}); | |
}else{ | |
- selectedScripts = toArray.call(document.querySelectorAll("script[data-cover]")); | |
+ // orientman: disable if run locally |
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
<!-- saved from url=(0016)http://localhost --> |
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
2c2 | |
< var cssSytle = "#blanket-main {margin:2px;background:#EEE;color:#333;clear:both;font-family:'Helvetica Neue Light', 'HelveticaNeue-Light', 'Helvetica Neue', Calibri, Helvetica, Arial, sans-serif; font-size:17px;} #blanket-main a {color:#333;text-decoration:none;} #blanket-main a:hover {text-decoration:underline;} .blanket {margin:0;padding:5px;clear:both;border-bottom: 1px solid #FFFFFF;} .bl-error {color:red;}.bl-success {color:#5E7D00;} .bl-file{width:auto;} .bl-cl{float:left;} .blanket div.rs {margin-left:50px; width:150px; float:right} .bl-nb {padding-right:10px;} #blanket-main a.bl-logo {color: #EB1764;cursor: pointer;font-weight: bold;text-decoration: none} .bl-source{ overflow-x:scroll; background-color: #FFFFFF; border: 1px solid #CBCBCB; color: #363636; margin: 25px 20px; width: 80%;} .bl-source div{white-space: pre;font-family: monospace;} .bl-source span{background-color: #EAEAEA;color: #949494;display: inline-block;padding: 0 10px;text-align: center;width: 30px;} .bl-source .miss{backgr |
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
/*jslint strict: false */ | |
// beware TOXIC HACK | |
(function ($) { | |
// footer contains UpdatePanel with server time | |
function getApplicationTime() { | |
var regex = /.*(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2}).*/g, | |
m = regex.exec($('#ctl00_UpdateLastAsync').text()), i; | |
for (i = 1; i <= 6; i = i + 1) { | |
m[i] = parseInt(m[i], 10); |
OlderNewer