Merge branch 'develop' into SDK

This commit is contained in:
Samuele E. Locatelli
2020-07-27 20:23:10 +02:00
386 changed files with 34639 additions and 1590 deletions
+43
View File
@@ -189,6 +189,7 @@ namespace AppData
public static string redProdReq = "NKC:SERV:BUNKS";
public static string redProdAnsw = "NKC:PROD:BUNKS";
public static string redSecScreenReq = "NKC:SECSCREEN:REQ";
@@ -2150,5 +2151,47 @@ namespace AppData
#endregion
#region metodi per SecScreen
public static int getSecScreenCode()
{
int answ = 0;
Random rnd = new Random();
answ = rnd.Next(10000);
return answ;
}
/// <summary>
/// Restitusice il path del PDF richeisto su una data SecScreen come salvato su REDIS
/// </summary>
/// <param name="secScreenCode">cod schermo, formato SSC000000</param>
/// <returns></returns>
public static string getSecScreenRequest(string secScreenCode)
{
string answ = "";
// recupero ultima call
string redKey = $"{redSecScreenReq}:{secScreenCode}";
answ = memLayer.ML.getRSV(redKey);
return answ;
}
/// <summary>
/// Salva su REDIS richiesta visualizzaizone SecondScreen x
/// </summary>
/// <param name="secScreenCode">cod schermo, formato SSC000000</param>
/// <param name="filePath">Path file richiesto (pdf)</param>
/// <param name="ttl_sec">durata in redis della richiesta</param>
/// <returns></returns>
public static bool setSecScreenRequest(string secScreenCode, string filePath, int ttl_sec)
{
bool answ = false;
// recupero ultima call
string redKey = $"{redSecScreenReq}:{secScreenCode}";
answ = memLayer.ML.setRSV(redKey, filePath, ttl_sec);
return answ;
}
#endregion
}
}
+9 -9
View File
@@ -161,6 +161,15 @@ namespace AppData
answ.codeInt = codeInt;
answ.description = $"Material: {answ.code}";
}
else if (bcValue.StartsWith("SSC"))
{
answ.codeType = codeType.SecScreen;
answ.code = bcValue.Replace("SSC", "");
int codeInt = 0;
int.TryParse(answ.code, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out codeInt);
answ.codeInt = codeInt;
answ.description = $"Secondary Screen : {answ.code}";
}
else if (bcValue.StartsWith("BK"))
{
answ.codeType = codeType.Stack;
@@ -224,15 +233,6 @@ namespace AppData
answ.codeInt = codeInt;
answ.description = $"Processed Bin: {answ.code}";
}
else if (bcValue.StartsWith("SS"))
{
answ.codeType = codeType.SecScreen;
answ.code = bcValue.Replace("SS", "");
int codeInt = 0;
int.TryParse(answ.code, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out codeInt);
answ.codeInt = codeInt;
answ.description = $"Secondary Screen : {answ.code}";
}
return answ;
}
Vendored
+1 -1
View File
@@ -11,7 +11,7 @@ pipeline {
steps {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=298']) {
withEnv(['NEXT_BUILD_NUMBER=299']) {
// env.versionNumber = VersionNumber(versionNumberString : '0.10.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '0.10.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.versionNumberBeta = VersionNumber(versionNumberString : '0.10.${BUILD_DATE_FORMATTED, "yyMM"}-beta.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
+300 -300
View File
@@ -6,315 +6,315 @@ using System.Net.NetworkInformation;
namespace NKC_SDK
{
public class NKC
{
#region utils comunicazione HTTP
public class NKC
{
#region utils comunicazione HTTP
/// <summary>
/// Effettua chiamata URL e restituisce risultato
/// </summary>
/// <param name="URL"></param>
/// <returns></returns>
public static string callUrl(string URL)
{
string answ = "";
var client = new WebClientWT();
//var client = new WebClient();
client.Headers.Add("user-agent", "NKC_SDK");
try
{
answ = client.DownloadString(URL);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante callUrl per URL: {URL}{Environment.NewLine}{exc}");
answ = exc.Message;
}
// restituisco valore!
return answ;
}
/// <summary>
/// Effettua chiamata URL e restituisce risultato
/// </summary>
/// <param name="URL"></param>
/// <param name="payload"></param>
/// <returns></returns>
public static string callUrl(string URL, string payload)
{
string answ = "";
var client = new WebClientWT();
client.Headers.Add("user-agent", "NKC_SDK");
try
{
answ = client.UploadString(URL, payload);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante callUrl per URL: {URL} | payload: {payload}{Environment.NewLine}{exc}");
answ = exc.Message;
}
// restituisco valore!
return answ;
}
/// <summary>
/// Effettua chiamata PUT
/// </summary>
/// <param name="URL"></param>
/// <param name="payload"></param>
/// <returns></returns>
public static string putData(string URL, string payload)
{
string answ = "";
var client = new WebClientWT();
client.Headers.Add("user-agent", "NKC_SDK");
// importante x evitare errore 415 di dataType non ammesso
client.Headers.Add(HttpRequestHeader.ContentType, "application/json");
try
{
// va messo "PUT" e va configurato IIS per accettare PUT
answ = client.UploadString(URL, "PUT", payload);
answ = "ok";
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante putData per {URL}{Environment.NewLine}{exc}");
answ = exc.Message;
}
// restituisco valore!
return answ;
}
#endregion
#region URL di base
protected string urlAlive
{
get
{
return $"{_baseUrl}api/Alive";
}
}
protected string urlAliveClock
{
get
{
return $"{_baseUrl}api/Alive/1";
}
}
protected string urlCurrBunk
{
get
{
return $"{_baseUrl}api/Bunk";
}
}
protected string urlCurrSheet4Mac
{
get
{
return $"{_baseUrl}api/Sheet/{_codPost}";
}
}
protected string urlGetBunk(int currBunkId)
{
return $"{_baseUrl}api/Bunk/{currBunkId}?showNext=false";
}
protected string urlNextBunk(int currBunkId)
{
return $"{_baseUrl}api/Bunk/{currBunkId}?showNext=true";
}
protected string urlPutBunk(int currBunkId)
{
return $"{_baseUrl}api/Bunk/{currBunkId}";
}
/// <summary>
/// URL x salvataggio dati SHEET
/// </summary>
/// <returns></returns>
protected string urlPutSheetList
{
get
{
return $"{_baseUrl}api/Sheet/{_codPost}";
}
}
/// <summary>
/// file locale per persistenza BUNK
/// </summary>
protected string persistFileName = "data/persistFile.json";
#endregion
/// <summary>
/// URL di base per la comunicazione
///
/// PROD: http://seriate.steamware.net:8083/NKC/
/// DEV: https://localhost:44388/
/// </summary>
protected string _baseUrl { get; set; } = @"http://seriate.steamware.net:8083/NKC/";
/// <summary>
/// DnsName/IP di base x chaimate
/// </summary>
protected string _baseIp { get; set; } = "seriate.steamware.net";
/// <summary>
/// COD macchina x cui si effettua chiamata
/// </summary>
protected string _codPost { get; set; } = "";
/// <summary>
/// Classe per effettuare comunicazioni con NKC
/// </summary>
/// <param name="baseIp">IP di base x ping</param>
/// <param name="baseUrl">URL di abse x chiamate REST</param>
/// <param name="codPost">Codice posstazione/macchina x cui si fa chiamata</param>
public NKC(string baseIp, string baseUrl, string codPost)
{
_baseIp = baseIp;
_baseUrl = baseUrl;
_codPost = codPost;
}
/// <summary>
/// Effettua test ping all'indirizzo del server
/// </summary>
public PingReply testPing
{
get
{
Ping myPing = new Ping();
// timeout a 1 sec!
PingReply answ = myPing.Send(_baseIp, 1000);
// rendo!
return answ;
}
}
/// <summary>
/// Effettua test alive all'indirizzo del server
/// </summary>
public bool testAlive
{
get
{
bool answ = false;
string returnData = callUrl(urlAlive);
returnData = JsonConvert.DeserializeObject<string>(returnData);
answ = returnData == "OK";
// rendo!
return answ;
}
}
/// <summary>
/// Effettua test ping all'indirizzo del server
/// </summary>
public DateTime testClock
{
get
{
DateTime oggi = DateTime.Today;
DateTime answ = oggi.AddYears(-oggi.Year + 1900).AddMonths(-oggi.Month).AddDays(-oggi.Day + 1);
// recupero!
string returnData = callUrl(urlAliveClock);
try
/// <summary>
/// Effettua chiamata URL e restituisce risultato
/// </summary>
/// <param name="URL"></param>
/// <returns></returns>
public static string callUrl(string URL)
{
DateTime.TryParse(JsonConvert.DeserializeObject<string>(returnData), out answ);
string answ = "";
var client = new WebClientWT();
//var client = new WebClient();
client.Headers.Add("user-agent", "NKC_SDK");
try
{
answ = client.DownloadString(URL);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante callUrl per URL: {URL}{Environment.NewLine}{exc}");
answ = exc.Message;
}
// restituisco valore!
return answ;
}
catch (Exception exc)
/// <summary>
/// Effettua chiamata URL e restituisce risultato
/// </summary>
/// <param name="URL"></param>
/// <param name="payload"></param>
/// <returns></returns>
public static string callUrl(string URL, string payload)
{
Log.Instance.Error($"Eccezione durante testClock, ricevuto {returnData}{Environment.NewLine}{exc}");
string answ = "";
var client = new WebClientWT();
client.Headers.Add("user-agent", "NKC_SDK");
try
{
answ = client.UploadString(URL, payload);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante callUrl per URL: {URL} | payload: {payload}{Environment.NewLine}{exc}");
answ = exc.Message;
}
// restituisco valore!
return answ;
}
// rendo!
return answ;
}
}
#region metodi per SheetWorklist
/// <summary>
/// Effettua chiamata PUT
/// </summary>
/// <param name="URL"></param>
/// <param name="payload"></param>
/// <returns></returns>
public static string putData(string URL, string payload)
{
string answ = "";
var client = new WebClientWT();
client.Headers.Add("user-agent", "NKC_SDK");
// importante x evitare errore 415 di dataType non ammesso
client.Headers.Add(HttpRequestHeader.ContentType, "application/json");
try
{
// va messo "PUT" e va configurato IIS per accettare PUT
answ = client.UploadString(URL, "PUT", payload);
answ = "ok";
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante putData per {URL}{Environment.NewLine}{exc}");
answ = exc.Message;
}
// restituisco valore!
return answ;
}
/// <summary>
/// Recupera elenco dei fogli ATTIVI
/// - effettua chiamata tramite REST API HTTP
/// - il risutlato viene deserializzato nell'oggetto richiesto
/// </summary>
/// <returns></returns>
public SheetWorkList getCurrentSheets()
{
SheetWorkList answ = null;
string rawdata = "";
// chiamo metodo x recupero WBunk...
try
{
rawdata = callUrl(urlCurrSheet4Mac);
answ = JsonConvert.DeserializeObject<SheetWorkList>(rawdata);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante getCurrentSheets, ricevuto {rawdata}{Environment.NewLine}{exc}");
}
return answ;
}
/// <summary>
/// Effettua salvataggio dell'elenco dei fogli (1..n) su NKC
/// </summary>
/// <param name="updatedSheetList"></param>
public bool saveSheets(SheetWorkList updatedSheetList)
{
bool answ = false;
string rawdata = "";
try
{
// serializzo oggetto
rawdata = JsonConvert.SerializeObject(updatedSheetList);
// invio con metodo put!
putData(urlPutSheetList, rawdata);
answ = true;
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante saveSheets, ricevuto {rawdata}{Environment.NewLine}{exc}");
}
return answ;
}
/// <summary>
/// Oggetto che contiene l'oggetto SHEET WorkList corrente salvato LOCALMENTE
/// </summary>
public SheetWorkList persistedSheetList
{
get
{
SheetWorkList answ = new SheetWorkList();
try
{
string rawdata = File.ReadAllText(persistFileName);
answ = JsonConvert.DeserializeObject<SheetWorkList>(rawdata);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante recupero locale della SheetList{Environment.NewLine}{exc}");
}
return answ;
}
set
{
try
{
// serializzo oggetto
string rawdata = JsonConvert.SerializeObject(value);
// salvo in locale
File.WriteAllText(persistFileName, rawdata);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante salvataggio locale della SheetList{Environment.NewLine}{exc}");
}
}
}
#endregion
#endregion
#region URL di base
protected string urlAlive
{
get
{
return $"{_baseUrl}api/Alive";
}
}
protected string urlAliveClock
{
get
{
return $"{_baseUrl}api/Alive/1";
}
}
protected string urlCurrBunk
{
get
{
return $"{_baseUrl}api/Bunk";
}
}
protected string urlCurrSheet4Mac
{
get
{
return $"{_baseUrl}api/Sheet/{_codPost}";
}
}
protected string urlGetBunk(int currBunkId)
{
return $"{_baseUrl}api/Bunk/{currBunkId}?showNext=false";
}
protected string urlNextBunk(int currBunkId)
{
return $"{_baseUrl}api/Bunk/{currBunkId}?showNext=true";
}
protected string urlPutBunk(int currBunkId)
{
return $"{_baseUrl}api/Bunk/{currBunkId}";
}
/// <summary>
/// URL x salvataggio dati SHEET
/// </summary>
/// <returns></returns>
protected string urlPutSheetList
{
get
{
return $"{_baseUrl}api/Sheet/{_codPost}";
}
}
/// <summary>
/// file locale per persistenza BUNK
/// </summary>
protected string persistFileName = "data/persistFile.json";
#endregion
/// <summary>
/// URL di base per la comunicazione
///
/// PROD: http://seriate.steamware.net:8083/NKC/
/// DEV: https://localhost:44388/
/// </summary>
protected string _baseUrl { get; set; } = @"http://seriate.steamware.net:8083/NKC/";
/// <summary>
/// DnsName/IP di base x chaimate
/// </summary>
protected string _baseIp { get; set; } = "seriate.steamware.net";
/// <summary>
/// COD macchina x cui si effettua chiamata
/// </summary>
protected string _codPost { get; set; } = "";
/// <summary>
/// Classe per effettuare comunicazioni con NKC
/// </summary>
/// <param name="baseIp">IP di base x ping</param>
/// <param name="baseUrl">URL di abse x chiamate REST</param>
/// <param name="codPost">Codice posstazione/macchina x cui si fa chiamata</param>
public NKC(string baseIp, string baseUrl, string codPost)
{
_baseIp = baseIp;
_baseUrl = baseUrl;
_codPost = codPost;
}
/// <summary>
/// Effettua test ping all'indirizzo del server
/// </summary>
public PingReply testPing
{
get
{
Ping myPing = new Ping();
// timeout a 1 sec!
PingReply answ = myPing.Send(_baseIp, 1000);
// rendo!
return answ;
}
}
/// <summary>
/// Effettua test alive all'indirizzo del server
/// </summary>
public bool testAlive
{
get
{
bool answ = false;
string returnData = callUrl(urlAlive);
returnData = JsonConvert.DeserializeObject<string>(returnData);
answ = returnData == "OK";
// rendo!
return answ;
}
}
/// <summary>
/// Effettua test ping all'indirizzo del server
/// </summary>
public DateTime testClock
{
get
{
DateTime oggi = DateTime.Today;
DateTime answ = oggi.AddYears(-oggi.Year + 1900).AddMonths(-oggi.Month).AddDays(-oggi.Day + 1);
// recupero!
string returnData = callUrl(urlAliveClock);
try
{
DateTime.TryParse(JsonConvert.DeserializeObject<string>(returnData), out answ);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante testClock, ricevuto {returnData}{Environment.NewLine}{exc}");
}
// rendo!
return answ;
}
}
#region metodi per SheetWorklist
/// <summary>
/// Recupera elenco dei fogli ATTIVI
/// - effettua chiamata tramite REST API HTTP
/// - il risutlato viene deserializzato nell'oggetto richiesto
/// </summary>
/// <returns></returns>
public SheetWorkList getCurrentSheets()
{
SheetWorkList answ = null;
string rawdata = "";
// chiamo metodo x recupero WBunk...
try
{
rawdata = callUrl(urlCurrSheet4Mac);
answ = JsonConvert.DeserializeObject<SheetWorkList>(rawdata);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante getCurrentSheets, ricevuto {rawdata}{Environment.NewLine}{exc}");
}
return answ;
}
/// <summary>
/// Effettua salvataggio dell'elenco dei fogli (1..n) su NKC
/// </summary>
/// <param name="updatedSheetList"></param>
public bool saveSheets(SheetWorkList updatedSheetList)
{
bool answ = false;
string rawdata = "";
try
{
// serializzo oggetto
rawdata = JsonConvert.SerializeObject(updatedSheetList);
// invio con metodo put!
putData(urlPutSheetList, rawdata);
answ = true;
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante saveSheets, ricevuto {rawdata}{Environment.NewLine}{exc}");
}
return answ;
}
/// <summary>
/// Oggetto che contiene l'oggetto SHEET WorkList corrente salvato LOCALMENTE
/// </summary>
public SheetWorkList persistedSheetList
{
get
{
SheetWorkList answ = new SheetWorkList();
try
{
string rawdata = File.ReadAllText(persistFileName);
answ = JsonConvert.DeserializeObject<SheetWorkList>(rawdata);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante recupero locale della SheetList{Environment.NewLine}{exc}");
}
return answ;
}
set
{
try
{
// serializzo oggetto
string rawdata = JsonConvert.SerializeObject(value);
// salvo in locale
File.WriteAllText(persistFileName, rawdata);
}
catch (Exception exc)
{
Log.Instance.Error($"Eccezione durante salvataggio locale della SheetList{Environment.NewLine}{exc}");
}
}
}
#endregion
#if false
#region metodi per BUNK
#region metodi per BUNK
/// <summary>
/// Recupera il PRIMO BUNK
@@ -439,8 +439,8 @@ namespace NKC_SDK
}
}
#endregion
#endregion
#endif
}
}
}
+645 -645
View File
File diff suppressed because it is too large Load Diff
+380
View File
@@ -268,6 +268,98 @@
<Content Include="Scripts\esm\popper-utils.min.js" />
<Content Include="Scripts\esm\popper.js" />
<Content Include="Scripts\esm\popper.min.js" />
<Content Include="Scripts\pdf.js\build\pdf.js" />
<Content Include="Scripts\pdf.js\build\pdf.worker.js" />
<Content Include="Scripts\pdf.js\web\debugger.js" />
<Content Include="Scripts\pdf.js\web\images\annotation-check.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-comment.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-help.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-insert.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-key.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-newparagraph.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-noicon.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-note.svg" />
<Content Include="Scripts\pdf.js\web\images\annotation-paragraph.svg" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-next%402x.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-next-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-next-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-next.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-previous%402x.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-previous-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-previous-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\findbarButton-previous.png" />
<Content Include="Scripts\pdf.js\web\images\grab.cur" />
<Content Include="Scripts\pdf.js\web\images\grabbing.cur" />
<Content Include="Scripts\pdf.js\web\images\loading-icon.gif" />
<Content Include="Scripts\pdf.js\web\images\loading-small%402x.png" />
<Content Include="Scripts\pdf.js\web\images\loading-small.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-documentProperties%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-documentProperties.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-firstPage%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-firstPage.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-handTool%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-handTool.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-lastPage%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-lastPage.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-rotateCcw%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-rotateCcw.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-rotateCw%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-rotateCw.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-selectTool%402x.png" />
<Content Include="Scripts\pdf.js\web\images\secondaryToolbarButton-selectTool.png" />
<Content Include="Scripts\pdf.js\web\images\shadow.png" />
<Content Include="Scripts\pdf.js\web\images\texture.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-bookmark%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-bookmark.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-download%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-download.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-menuArrows%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-menuArrows.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-openFile%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-openFile.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageDown%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageDown-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageDown-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageDown.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageUp%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageUp-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageUp-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-pageUp.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-presentationMode%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-presentationMode.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-print%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-print.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-search%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-search.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-secondaryToolbarToggle%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-secondaryToolbarToggle-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-secondaryToolbarToggle-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-secondaryToolbarToggle.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-sidebarToggle%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-sidebarToggle-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-sidebarToggle-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-sidebarToggle.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewAttachments%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewAttachments.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewOutline%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewOutline-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewOutline-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewOutline.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewThumbnail%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-viewThumbnail.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-zoomIn%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-zoomIn.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-zoomOut%402x.png" />
<Content Include="Scripts\pdf.js\web\images\toolbarButton-zoomOut.png" />
<Content Include="Scripts\pdf.js\web\images\treeitem-collapsed%402x.png" />
<Content Include="Scripts\pdf.js\web\images\treeitem-collapsed-rtl%402x.png" />
<Content Include="Scripts\pdf.js\web\images\treeitem-collapsed-rtl.png" />
<Content Include="Scripts\pdf.js\web\images\treeitem-collapsed.png" />
<Content Include="Scripts\pdf.js\web\images\treeitem-expanded%402x.png" />
<Content Include="Scripts\pdf.js\web\images\treeitem-expanded.png" />
<Content Include="Scripts\pdf.js\web\viewer.css" />
<Content Include="Scripts\pdf.js\web\viewer.html" />
<Content Include="Scripts\pdf.js\web\viewer.js" />
<Content Include="Scripts\popper-utils.js" />
<Content Include="Scripts\popper-utils.min.js" />
<Content Include="Scripts\popper.js" />
@@ -429,6 +521,7 @@
<Content Include="WebUserControls\cmp_paint_bins.ascx" />
<Content Include="WebUserControls\cmp_scrapList.ascx" />
<Content Include="WebUserControls\cmp_searchItems.ascx" />
<Content Include="WebUserControls\cmp_secScreen.ascx" />
<Content Include="WebUserControls\cmp_slider.ascx" />
<Content Include="WebUserControls\cmp_StackBuildDetail.ascx" />
<Content Include="WebUserControls\cmp_stackBuilding.ascx" />
@@ -1188,6 +1281,13 @@
<Compile Include="WebUserControls\cmp_searchItems.ascx.designer.cs">
<DependentUpon>cmp_searchItems.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_secScreen.ascx.cs">
<DependentUpon>cmp_secScreen.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\cmp_secScreen.ascx.designer.cs">
<DependentUpon>cmp_secScreen.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_slider.ascx.cs">
<DependentUpon>cmp_slider.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@@ -1318,6 +1418,286 @@
<Content Include="SHARE_SQL\.PlaceHolder.file">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="temp\119752.pdf" />
<Content Include="Scripts\pdf.js\web\viewer.js.map" />
<Content Include="Scripts\pdf.js\web\locale\zu\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\zh-TW\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\zh-CN\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\xh\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\wo\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\vi\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ur\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\uk\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\tr\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\tn\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\tl\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\th\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\te\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ta\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ta-LK\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sw\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sv-SE\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sr\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sq\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\son\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sl\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sk\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\si\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\sah\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\rw\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ru\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ro\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\rm\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\pt-PT\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\pt-BR\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\pl\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\pa-IN\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\or\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\oc\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\nso\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\nn-NO\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\nl\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\nb-NO\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\my\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ms\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\mr\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\mn\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ml\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\mk\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\mai\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\lv\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\lt\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\locale.properties" />
<Content Include="Scripts\pdf.js\web\locale\lij\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\lg\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ku\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ko\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\kn\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\km\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\kk\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ka\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ja\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\it\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\is\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\id\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\hy-AM\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\hu\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\hr\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\hi-IN\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\he\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\gu-IN\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\gl\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\gd\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ga-IE\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\fy-NL\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\fr\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\fi\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ff\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\fa\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\eu\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\et\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\es-MX\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\es-ES\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\es-CL\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\es-AR\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\eo\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\en-ZA\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\en-US\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\en-GB\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\el\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\de\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\da\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\cy\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\cs\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\csb\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ca\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\bs\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\br\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\bn-IN\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\bn-BD\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\bg\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\be\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\az\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\as\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ast\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ar\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\an\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ak\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\af\viewer.properties" />
<Content Include="Scripts\pdf.js\web\locale\ach\viewer.properties" />
<Content Include="Scripts\pdf.js\web\compressed.tracemonkey-pldi-09.pdf" />
<Content Include="Scripts\pdf.js\web\cmaps\WP-Symbol.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UTF8-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UTF8-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UTF16-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UTF16-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UCS2-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniKS-UCS2-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISX02132004-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISX02132004-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISX0213-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISX0213-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISPro-UTF8-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISPro-UCS2-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJISPro-UCS2-HW-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS2004-UTF8-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS2004-UTF8-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS2004-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS2004-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS2004-UTF16-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS2004-UTF16-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UTF8-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UTF8-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UTF16-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UTF16-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UCS2-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UCS2-HW-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UCS2-HW-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniJIS-UCS2-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UTF8-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UTF8-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UTF16-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UTF16-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UCS2-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniGB-UCS2-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UTF8-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UTF8-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UTF32-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UTF32-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UTF16-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UTF16-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UCS2-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\UniCNS-UCS2-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Roman.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\NWP-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\NWP-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\LICENSE" />
<Content Include="Scripts\pdf.js\web\cmaps\KSCpc-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSCpc-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSCms-UHC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSCms-UHC-HW-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSCms-UHC-HW-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSCms-UHC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSC-Johab-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSC-Johab-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSC-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\KSC-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Katakana.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKscs-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKscs-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKm471-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKm471-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKm314-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKm314-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKgccs-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKgccs-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKdlb-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKdlb-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKdla-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\HKdla-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Hiragana.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Hankaku.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBTpc-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBTpc-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBT-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBT-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBT-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBT-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBpc-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBpc-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBKp-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBKp-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBK2K-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBK2K-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBK-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GBK-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GB-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GB-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GB-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\GB-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Ext-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Ext-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Ext-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Ext-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\ETHK-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\ETHK-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\ETenms-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\ETenms-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\ETen-B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\ETen-B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\CNS2-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\CNS2-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\CNS1-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\CNS1-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\CNS-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\CNS-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\B5pc-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\B5pc-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\B5-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\B5-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Korea1-UCS2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Korea1-2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Korea1-1.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Korea1-0.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-UCS2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-6.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-5.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-4.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-3.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-1.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-Japan1-0.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-UCS2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-5.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-4.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-3.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-1.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-GB1-0.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-UCS2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-6.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-5.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-4.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-3.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-2.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-1.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Adobe-CNS1-0.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Add-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Add-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Add-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\Add-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\90pv-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\90pv-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\90msp-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\90msp-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\90ms-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\90ms-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\83pv-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78ms-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78ms-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78-RKSJ-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78-RKSJ-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78-H.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78-EUC-V.bcmap" />
<Content Include="Scripts\pdf.js\web\cmaps\78-EUC-H.bcmap" />
<Content Include="Scripts\pdf.js\LICENSE" />
<Content Include="Scripts\pdf.js\build\pdf.worker.js.map" />
<Content Include="Scripts\pdf.js\build\pdf.js.map" />
<None Include="Web.Debug-LELE.config">
<DependentUpon>Web.config</DependentUpon>
</None>
+177
View File
@@ -0,0 +1,177 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
àRCopyright 1990-2009 Adobe Systems Incorporated.
All rights reserved.
See ./LICENSEáCNS2-H
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
àRCopyright 1990-2009 Adobe Systems Incorporated.
All rights reserved.
See ./LICENSEá ETen-B5-H` ^
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
àRCopyright 1990-2009 Adobe Systems Incorporated.
All rights reserved.
See ./LICENSE!!º]aX!!]`21> p z$]"Rd-Uƒ7*
4„%+ „Z „{/%…<9K…b1]†." ‰`]‡,"]ˆ
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More