This file contains hidden or 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
| FST_PreviewRequests = []; | |
| function FST_RegisterDocPreviewFetch(a) { | |
| ULShpi: ; | |
| FST_PreviewRequests.push(a) | |
| } | |
| var gTotReq = 0, | |
| gTotReqSent = 0; | |
| function FST_StartDocPreviewFetch(b, c) { |
This file contains hidden or 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
| function navigateMailToLink(a) { | |
| ULSA13: ; | |
| window.location = "mailto:?body=" + escapeProperly(a) | |
| } |
This file contains hidden or 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
| function GetUrlKeyValue(d, e, a) { | |
| ULSA13: ; | |
| var c = ""; | |
| if (a == null) a = window.location.href + ""; | |
| var b; | |
| b = a.indexOf("#"); | |
| if (b >= 0) a = a.substr(0, b); | |
| b = a.indexOf("&" + d + "="); | |
| if (b == -1) b = a.indexOf("?" + d + "="); | |
| if (b != -1) { |
This file contains hidden or 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
| before: | |
| <body onload="javascript:if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();"> | |
| after: | |
| <script type="text/javascript"> | |
| var attempts_remain = 200; | |
| function _lazySpBodyOnLoadWrapper() { | |
| if (typeof(_spBodyOnLoadWrapper) == 'undefined' || !(document.readyState === "complete")) { | |
| if (attempts_remain > 0) { | |
| attempts_remain--; |
This file contains hidden or 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 Microsoft.SharePoint; | |
| namespace EPAM.USPS.SharePoint.Core.Utilities.Specific | |
| { | |
| public class ListItemPropertySet | |
| { | |
| public ListItemPropertySet() | |
| { | |
| } |
This file contains hidden or 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
| /************************************************************************************************** | |
| * SuperSDG v2.2 release * | |
| * Copyright (c) 2002-2008 Ravent * | |
| * All rights reserved * | |
| * Нарушение авторских прав карается жесотким и мучительным угрызением совести. * | |
| **************************************************************************************************/ | |
| #pragma comment (lib,"glut32.lib") | |
| #pragma comment (lib,"glaux.lib") | |
| #include <gl/glaux.h> |
This file contains hidden or 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
| open System.IO; | |
| let rec getAllDirectories dir = | |
| Directory.GetDirectories(dir) | |
| |> Array.collect getAllDirectories | |
| |> Array.append [|dir|] | |
| let directoryName = System.Environment.GetCommandLineArgs().[1] |
This file contains hidden or 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
| /*************************************************************************** | |
| Copyright (c) Microsoft Corporation 2011. | |
| This code is licensed using the Microsoft Public License (Ms-PL). The text of the license can be found here: | |
| http://www.microsoft.com/resources/sharedsource/licensingbasics/publiclicense.mspx | |
| ***************************************************************************/ |
This file contains hidden or 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
| public class TableCellSource : ISource | |
| { | |
| public WmlDocument WmlDocument { get; set; } | |
| public bool KeepSections { get; set; } | |
| public string InsertId { get; set; } | |
| public int TableNum { get; set; } |
This file contains hidden or 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 ADOConsoleApplication | |
| { | |
| using System; | |
| using System.Data; | |
| using System.Data.SqlClient; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
OlderNewer