diff --git a/API.cs b/API.cs index 8444906..752742c 100644 --- a/API.cs +++ b/API.cs @@ -408,9 +408,13 @@ public static void APICalls(CurrentQuery query) query.Senses.Add(currentSense); Console.WriteLine(); - Console.WriteLine("----Enter for more - X to exit----"); + Console.WriteLine("---- S to Save - X to exit - Enter for more----"); string input = Console.ReadLine().Trim().ToLower(); - if (input == "x") + if (input == "S") + { + SavedQueries.AddMember(currentSense); + } + else if (input == "x") break; } catch (Exception ex) @@ -474,7 +478,7 @@ public static void APICalls(CurrentQuery query) if (input == "s") { Console.WriteLine("Quote saved."); - SavedQueries.AddQuote(currentQuote); + SavedQueries.AddMember(currentQuote); } else if (input == "x") break; diff --git a/ConsoleUI.cs b/ConsoleUI.cs index caf0899..cd90d8d 100644 --- a/ConsoleUI.cs +++ b/ConsoleUI.cs @@ -114,7 +114,7 @@ static void MainMenu(CurrentQuery query) case ("e" or "export" or "export results"): Trace.WriteLine("Export quotations."); - if (SavedQueries.Quotes.Count != 0) + if (SavedQueries.Quotes.Count != 0 || SavedQueries.Senses.Count != 0) SavedQueries.RenderXML(); else { Console.WriteLine("You have not yet saved anything for export."); diff --git a/OED-export.xml b/OED-export.xml index fbf1c0a..cb85483 100644 --- a/OED-export.xml +++ b/OED-export.xml @@ -1,75 +1,21 @@  - 8 + 2 1 - W. R. Dawson - 1450 + H. Purcell - 1683 Topic - Giff it to a dogge that goþe assaut, and he will forsake the biche, and she will go wode. --W. R. Dawson, 1450 + The English Practitioner..will find a few terms of Art perhaps unusual to him, the chief of which are..Piano. --H. Purcell, 1683 &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary 2 - G. Booth - 1700 + - 1724 Topic - Some..say, that he set the end of the Spear against the Wall, and attempted to run himself upon the point. --G. Booth, 1700 - &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary - - - - 3 - J. Shirley - 1703 - Topic - - The furious Sword ran through his right Side. --J. Shirley, 1703 - &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary - - - - 4 - D. Defoe - 1725 - Topic - - The second Messenger came in and delivered his Part of the Errand. --D. Defoe, 1725 - &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary - - - - 5 - J. Thomson - 1727 - Topic - - Immortal Forms, On heavenly Errands bent. --J. Thomson, 1727 - &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary - - - - 6 - T. B. Macaulay - 1833 - Topic - - The American dependencies of the Castilian crown still extended far to the North of Cancer and far to the South of Capricorn. --T. B. Macaulay, 1833 - &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary - - - - 7 - E. B. Denison - 1867 - Topic - - The tropic of Capricorn, which the sun reaches in our winter and the southern midsummer. --E. B. Denison, 1867 - &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary - - - - 8 - ‘E. Kirk’ - 1894 - Topic - - Capricorn people resent all interference, and never meddle with the affairs of others. --‘E. Kirk’, 1894 + Piano, or the Letter P, signifies Soft or Low. --, 1724 &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary diff --git a/SavedQueries.cs b/SavedQueries.cs index 08de665..98fd6de 100644 --- a/SavedQueries.cs +++ b/SavedQueries.cs @@ -15,6 +15,7 @@ public static class SavedQueries public static string WordID { get; set; } public static List Quotes { get; set; } + public static List Senses { get; set; } public static string ExportFileName { get; set; } = "OED-export.xml"; @@ -22,9 +23,21 @@ static SavedQueries() { Instance=true; Quotes = new(); + Senses = new(); } - public static void AddQuote(Quote quote) { + public static void AddMember(Sense sense) { + Senses.Add(sense); + if (Senses.Count == 1) { + Console.WriteLine($"{Senses.Count} sense saved for export."); + } + else { + Console.WriteLine($"{Senses.Count} senses saved for export."); + } + + } + + public static void AddMember(Quote quote) { Quotes.Add(quote); if (Quotes.Count == 1) { Console.WriteLine($"{Quotes.Count} quote saved for export."); @@ -44,9 +57,11 @@ public static void RenderXML() { xml.WriteStartDocument(); xml.WriteStartElement("SuperMemoCollection"); - int count = Quotes.Count; + int count = Quotes.Count + Senses.Count; xml.WriteElementString("Count", $"{count}"); // @TODO Add count number and ID number + if (Quotes.Count > 0) { + Console.WriteLine("Exporting Quotes..."); for (int i = 0; i < Quotes.Count; i++) { try { xml.WriteStartElement("SuperMemoElement"); @@ -74,6 +89,55 @@ public static void RenderXML() { } } } + } + if (Senses.Count > 0) { + Console.WriteLine("Exporting Senses..."); + string obsoleteText = ""; + string mainUsageText = ""; + for (int i = 0; i < Senses.Count; i++) { + + if (Senses[i].IsObsolete) { + obsoleteText = "This usage is obsolete."; + } + else { + obsoleteText = "This usage is NOT obsolete."; + } + + if (Senses[i].IsMainUsage) { + mainUsageText = "This sense is the main sense for this word."; + } + else { + mainUsageText = "This sense is NOT the main sense for this word."; + } + + + try { + xml.WriteStartElement("SuperMemoElement"); + int ID = i + 1; + xml.WriteElementString("ID", $"{ID}"); + xml.WriteElementString("Title", $"{Senses[i].Definition}"); + xml.WriteElementString("Type", "Topic"); + xml.WriteStartElement("Content"); + xml.WriteElementString("Question", $"{Senses[i].Definition} --This sense was first used in the year {Senses[i].Start}, {obsoleteText}, {mainUsageText}, {Senses[i].OedReference}"); + + string encoded = WebUtility.HtmlEncode("
SuperMemo Reference:
Title:\"My Test Quote\"
Source: Oxford English Dictionary"); + xml.WriteElementString("SuperMemoReference", encoded); + + xml.WriteEndElement(); + xml.WriteEndElement(); + + } + catch (AggregateException ae) + { + var ex = ae.Flatten().InnerExceptions; + Console.WriteLine("Error writing XML document:"); + foreach (var exception in ex) + { + Console.WriteLine($"{ex.ToString()}"); + } + } + } + } try { xml.WriteEndElement(); diff --git a/bin/Debug/net5.0/OxfordV2.dll b/bin/Debug/net5.0/OxfordV2.dll index 7ad290f..3f15223 100644 Binary files a/bin/Debug/net5.0/OxfordV2.dll and b/bin/Debug/net5.0/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/OxfordV2.pdb b/bin/Debug/net5.0/OxfordV2.pdb index c340768..1c4cdb5 100644 Binary files a/bin/Debug/net5.0/OxfordV2.pdb and b/bin/Debug/net5.0/OxfordV2.pdb differ diff --git a/bin/Debug/net5.0/ref/OxfordV2.dll b/bin/Debug/net5.0/ref/OxfordV2.dll index b92897e..b4a4142 100644 Binary files a/bin/Debug/net5.0/ref/OxfordV2.dll and b/bin/Debug/net5.0/ref/OxfordV2.dll differ diff --git a/logs/Log_OxfordApplication_20210504-2224.txt b/logs/Log_OxfordApplication_20210504-2224.txt new file mode 100644 index 0000000..b263402 --- /dev/null +++ b/logs/Log_OxfordApplication_20210504-2224.txt @@ -0,0 +1,58 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +Automatically looking up user entered word: +mountain +Found that QueryMode is set to words. +Looking up the word: +mountain +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "mountain_nn01", "band": 7, "meta": {"created": 1908, "revised": true, "updated": 2003}, "lemma": "mountain", "oed_url": "https://www.oed.com/view/Entry/122893#eid35744113", "daterange": {"end": null, "start": 1275, "obsolete": false, "rangestring": "c1275\u2014"}, "etymology": {"etymons": [{"word": "montain", "language": "French"}, {"word": "montaine", "language": "French"}, {"word": "mountaine", "language": "French"}, {"word": "muntaine", "language": "French"}, {"word": "muntaigne", "language": "French"}, {"word": "montaigne", "language": "French"}, {"word": "montangne", "language": "French"}], "etymology_type": "borrowing", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "A borrowing from French."}, "first_use": "Layamon", "frequency": [[1750, 93], [1760, 100], [1770, 110], [1780, 120], [1790, 130], [1800, 140], [1810, 140], [1820, 150], [1830, 150], [1840, 140], [1850, 140], [1860, 140], [1870, 130], [1880, 130], [1890, 120], [1900, 110], [1910, 100], [1920, 96], [1930, 87], [1940, 81], [1950, 74], [1960, 65], [1970, 58], [1980, 53], [1990, 54], [2000, 56], [2010, 57]], "sense_ids": ["mountain_nn01-35744118", "mountain_nn01-35744345", "mountain_nn01-35744405", "mountain_nn01-35744498", "mountain_nn01-35744528", "mountain_nn01-35744574", "mountain_nn01-35744798", "mountain_nn01-35744921", "mountain_nn01-35745061", "mountain_nn01-35745115", "mountain_nn01-35745248", "mountain_nn01-35745273"], "definition": "A large natural elevation of the earth's surface, esp. one high and steep in form (larger and higher than a hill) and with a summit of relatively small area.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "mountain", "part_of_speech": "NN"}, {"form": "mountains", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "mountain", "part_of_speech": "NN"}, {"form": "mountains", "part_of_speech": "NNS"}]}], "frequency_id": "mountain_nn01-fq", "oed_reference": "mountain, n.", "pronunciations": [{"ipa": ["\u02c8ma\u028ant\u1d7bn"], "region": "British"}, {"ipa": ["\u02c8ma\u028ant(\u0259)n"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "mountain_nn01-35744118"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +mountain_nn01The user's input was read as: +s +Get senses selected. +API.cs is starting senses mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callSensesAPI +Making the request +System.Net.Http.HttpConnection+ContentLengthReadStream +Got senses responses. +Set JSONResponse to the response. +Ran senses using start. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210505-2150.txt b/logs/Log_OxfordApplication_20210505-2150.txt new file mode 100644 index 0000000..365bfd5 --- /dev/null +++ b/logs/Log_OxfordApplication_20210505-2150.txt @@ -0,0 +1,58 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +Automatically looking up user entered word: +computer +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01The user's input was read as: +s +Get senses selected. +API.cs is starting senses mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callSensesAPI +Making the request +System.Net.Http.HttpConnection+ContentLengthReadStream +Got senses responses. +Set JSONResponse to the response. +Ran senses using start. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210505-2152.txt b/logs/Log_OxfordApplication_20210505-2152.txt new file mode 100644 index 0000000..09bece4 --- /dev/null +++ b/logs/Log_OxfordApplication_20210505-2152.txt @@ -0,0 +1,62 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +Automatically looking up user entered word: +calculator +Found that QueryMode is set to words. +Looking up the word: +calculator +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "calculator_nn01", "band": 10, "meta": {"created": 1888, "revised": false, "updated": null}, "lemma": "calculator", "oed_url": "https://www.oed.com/view/Entry/26269#eid10637868", "daterange": {"end": null, "start": 1380, "obsolete": false, "rangestring": "c1380\u2014"}, "etymology": {"etymons": [{"word": "calcul\u0101tor", "language": "Latin"}], "etymology_type": "borrowing", "etymon_language": [["European languages", "Italic", "Latin"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "A borrowing from Latin."}, "first_use": "John Wyclif", "frequency": [[1750, 0.36], [1760, 0.43], [1770, 0.44], [1780, 0.47], [1790, 0.52], [1800, 0.58], [1810, 0.57], [1820, 0.55], [1830, 0.5], [1840, 0.48], [1850, 0.43], [1860, 0.39], [1870, 0.34], [1880, 0.32], [1890, 0.31], [1900, 0.29], [1910, 0.3], [1920, 0.34], [1930, 0.46], [1940, 0.6], [1950, 0.79], [1960, 1.4], [1970, 2.3], [1980, 3.3], [1990, 3.8], [2000, 3.9], [2010, 3.8]], "sense_ids": ["calculator_nn01-10637870", "calculator_nn01-10637917", "calculator_nn01-10637919", "calculator_nn01-10637947"], "definition": "An electronic device for performing calculations, now esp. one that is preprogrammed; spec. (more fully pocket calculator) a flat hand-held calculator with a keyboard and visual display.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "calculator", "part_of_speech": "NN"}, {"form": "calculators", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "calculator", "part_of_speech": "NN"}, {"form": "calculators", "part_of_speech": "NNS"}]}], "frequency_id": "calculator_nn01-fq", "oed_reference": "calculator, n.", "pronunciations": [{"ipa": ["\u02c8kalkj\u028a\u02ccle\u026at\u0259"], "region": "British"}], "parts_of_speech": ["NN"], "primary_sense_id": "calculator_nn01-10637947"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +calculator_nn01The user's input was read as: +s +Get senses selected. +API.cs is starting senses mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callSensesAPI +Making the request +System.Net.Http.HttpConnection+ContentLengthReadStream +Got senses responses. +Set JSONResponse to the response. +Ran senses using start. +In MainMenu() +The user's input was read as: +e +Export quotations. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210505-2154.txt b/logs/Log_OxfordApplication_20210505-2154.txt new file mode 100644 index 0000000..4088390 --- /dev/null +++ b/logs/Log_OxfordApplication_20210505-2154.txt @@ -0,0 +1,138 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +Automatically looking up user entered word: +piano +Found that QueryMode is set to words. +Looking up the word: +piano +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "piano_rb01", "band": 12, "meta": {"created": 1906, "revised": true, "updated": 2006}, "lemma": "piano", "oed_url": "https://www.oed.com/view/Entry/143287#eid30489292", "daterange": {"end": null, "start": 1683, "obsolete": false, "rangestring": "1683\u2014"}, "etymology": {"etymons": [{"word": "piano", "language": "Italian"}], "etymology_type": "borrowing", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Italian"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "A borrowing from Italian."}, "first_use": "Henry Purcell", "frequency": [[1750, 0.088], [1760, 0.089], [1770, 0.1], [1780, 0.12], [1790, 0.15], [1800, 0.19], [1810, 0.22], [1820, 0.26], [1830, 0.34], [1840, 0.44], [1850, 0.55], [1860, 0.68], [1870, 0.83], [1880, 1.0], [1890, 1.2], [1900, 1.4], [1910, 1.7], [1920, 2.0], [1930, 2.2], [1940, 2.1], [1950, 2.2], [1960, 1.9], [1970, 1.9], [1980, 1.9], [1990, 1.8], [2000, 1.7], [2010, 1.7]], "sense_ids": ["piano_rb01-30489294", "piano_rb01-30489407"], "definition": "Music. As a musical direction: softly, quietly.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "piano", "part_of_speech": "RB"}]}, {"region": "US", "inflections": [{"form": "piano", "part_of_speech": "RB"}]}], "frequency_id": "piano_rb01-fq", "oed_reference": "piano, adv.", "pronunciations": [{"ipa": ["\u02c8pj\u0251\u02d0n\u0259\u028a", "p\u026a\u02c8\u0251\u02d0n\u0259\u028a"], "region": "British"}, {"ipa": ["pi\u02c8\u0251no\u028a"], "region": "US"}], "parts_of_speech": ["RB"], "primary_sense_id": "piano_rb01-30489294"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +piano_rb01The user's input was read as: +s +Get senses selected. +API.cs is starting senses mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callSensesAPI +Making the request +System.Net.Http.HttpConnection+ContentLengthReadStream +Got senses responses. +Set JSONResponse to the response. +Ran senses using start. +In MainMenu() +The user's input was read as: +s +Get senses selected. +API.cs is starting senses mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callSensesAPI +Making the request +System.Net.Http.HttpConnection+ContentLengthReadStream +Got senses responses. +Set JSONResponse to the response. +Ran senses using start. +In MainMenu() +The user's input was read as: +e +Export quotations. +In MainMenu() +The user's input was read as: +e +Export quotations. +In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Got quotation responses. +Set JSONResponse to the response. +Ran quotations synchronously. +Parsing quotations JSON. +First quote grabbed as: + +In MainMenu() +The user's input was read as: +e +Export quotations. +The contents of the exported XML file are: + + + 2 + + 1 + H. Purcell - 1683 + Topic + + The English Practitioner..will find a few terms of Art perhaps unusual to him, the chief of which are..Piano. --H. Purcell, 1683 + &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary + + + + 2 + - 1724 + Topic + + Piano, or the Letter P, signifies Soft or Low. --, 1724 + &lt;H5 dir=ltr align=left&gt;&lt;Font size=&quot;1&quot; style=&quot;color: transparent&quot;&gt; SuperMemo Reference:&lt;/font&gt;&lt;br&gt;&lt;FONT class=reference&gt;Title:&quot;My Test Quote&quot; &lt;br&gt;Source: Oxford English Dictionary + + + +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/obj/Debug/net5.0/OxfordV2.AssemblyInfo.cs b/obj/Debug/net5.0/OxfordV2.AssemblyInfo.cs index d9ad450..def7aa4 100644 --- a/obj/Debug/net5.0/OxfordV2.AssemblyInfo.cs +++ b/obj/Debug/net5.0/OxfordV2.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/obj/Debug/net5.0/OxfordV2.assets.cache b/obj/Debug/net5.0/OxfordV2.assets.cache index b262e02..ccf3b2d 100644 Binary files a/obj/Debug/net5.0/OxfordV2.assets.cache and b/obj/Debug/net5.0/OxfordV2.assets.cache differ diff --git a/obj/Debug/net5.0/OxfordV2.csproj.FileListAbsolute.txt b/obj/Debug/net5.0/OxfordV2.csproj.FileListAbsolute.txt index a997977..1787f7b 100644 --- a/obj/Debug/net5.0/OxfordV2.csproj.FileListAbsolute.txt +++ b/obj/Debug/net5.0/OxfordV2.csproj.FileListAbsolute.txt @@ -14,3 +14,35 @@ C:\my-coding-projects\Oxford-App\OxfordV2\obj\Debug\net5.0\OxfordV2.dll C:\my-coding-projects\Oxford-App\OxfordV2\obj\Debug\net5.0\ref\OxfordV2.dll C:\my-coding-projects\Oxford-App\OxfordV2\obj\Debug\net5.0\OxfordV2.pdb C:\my-coding-projects\Oxford-App\OxfordV2\obj\Debug\net5.0\OxfordV2.genruntimeconfig.cache +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\OxfordV2.exe +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\OxfordV2.deps.json +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\OxfordV2.runtimeconfig.json +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\OxfordV2.runtimeconfig.dev.json +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\OxfordV2.dll +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\ref\OxfordV2.dll +C:\my-coding-projects\oxfordv2\bin\Debug\net5.0\OxfordV2.pdb +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.csprojAssemblyReference.cache +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.GeneratedMSBuildEditorConfig.editorconfig +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.AssemblyInfoInputs.cache +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.AssemblyInfo.cs +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.csproj.CoreCompileInputs.cache +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.dll +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\ref\OxfordV2.dll +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.pdb +C:\my-coding-projects\oxfordv2\obj\Debug\net5.0\OxfordV2.genruntimeconfig.cache +C:\my-coding-projects\oxford\bin\Debug\net5.0\OxfordV2.exe +C:\my-coding-projects\oxford\bin\Debug\net5.0\OxfordV2.deps.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\OxfordV2.runtimeconfig.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\OxfordV2.runtimeconfig.dev.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\OxfordV2.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\ref\OxfordV2.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\OxfordV2.pdb +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.csprojAssemblyReference.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.GeneratedMSBuildEditorConfig.editorconfig +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.AssemblyInfoInputs.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.AssemblyInfo.cs +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.csproj.CoreCompileInputs.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\ref\OxfordV2.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.pdb +C:\my-coding-projects\oxford\obj\Debug\net5.0\OxfordV2.genruntimeconfig.cache diff --git a/obj/Debug/net5.0/OxfordV2.csprojAssemblyReference.cache b/obj/Debug/net5.0/OxfordV2.csprojAssemblyReference.cache index d339bfd..0eba5f9 100644 Binary files a/obj/Debug/net5.0/OxfordV2.csprojAssemblyReference.cache and b/obj/Debug/net5.0/OxfordV2.csprojAssemblyReference.cache differ diff --git a/obj/Debug/net5.0/OxfordV2.dll b/obj/Debug/net5.0/OxfordV2.dll index 7ad290f..3f15223 100644 Binary files a/obj/Debug/net5.0/OxfordV2.dll and b/obj/Debug/net5.0/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/OxfordV2.genruntimeconfig.cache b/obj/Debug/net5.0/OxfordV2.genruntimeconfig.cache index 944bb84..859a1b1 100644 --- a/obj/Debug/net5.0/OxfordV2.genruntimeconfig.cache +++ b/obj/Debug/net5.0/OxfordV2.genruntimeconfig.cache @@ -1 +1 @@ -5ba83f84f7dc6a3700fd477769953882b4cdedc6 +a1e982c7ed49ea4b78b0d9765d000886db7c2903 diff --git a/obj/Debug/net5.0/OxfordV2.pdb b/obj/Debug/net5.0/OxfordV2.pdb index c340768..1c4cdb5 100644 Binary files a/obj/Debug/net5.0/OxfordV2.pdb and b/obj/Debug/net5.0/OxfordV2.pdb differ diff --git a/obj/Debug/net5.0/ref/OxfordV2.dll b/obj/Debug/net5.0/ref/OxfordV2.dll index b92897e..b4a4142 100644 Binary files a/obj/Debug/net5.0/ref/OxfordV2.dll and b/obj/Debug/net5.0/ref/OxfordV2.dll differ diff --git a/obj/OxfordV2.csproj.nuget.dgspec.json b/obj/OxfordV2.csproj.nuget.dgspec.json index 3302136..b4546db 100644 --- a/obj/OxfordV2.csproj.nuget.dgspec.json +++ b/obj/OxfordV2.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj": {} + "C:\\my-coding-projects\\oxford\\OxfordV2.csproj": {} }, "projects": { - "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj": { + "C:\\my-coding-projects\\oxford\\OxfordV2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj", + "projectUniqueName": "C:\\my-coding-projects\\oxford\\OxfordV2.csproj", "projectName": "OxfordV2", - "projectPath": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj", + "projectPath": "C:\\my-coding-projects\\oxford\\OxfordV2.csproj", "packagesPath": "C:\\Users\\Luke\\.nuget\\packages\\", - "outputPath": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\obj\\", + "outputPath": "C:\\my-coding-projects\\oxford\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" @@ -52,20 +52,6 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Runtime.win-x64", - "version": "[5.0.4, 5.0.4]" - }, - { - "name": "Microsoft.NETCore.App.Runtime.win-x64", - "version": "[5.0.4, 5.0.4]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", - "version": "[5.0.4, 5.0.4]" - } - ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" @@ -73,11 +59,6 @@ }, "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.104\\RuntimeIdentifierGraph.json" } - }, - "runtimes": { - "win10-x64": { - "#import": [] - } } } } diff --git a/obj/project.assets.json b/obj/project.assets.json index b35cc03..6d791ad 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -1,8 +1,7 @@ { "version": 3, "targets": { - "net5.0": {}, - "net5.0/win10-x64": {} + "net5.0": {} }, "libraries": {}, "projectFileDependencyGroups": { @@ -15,11 +14,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj", + "projectUniqueName": "C:\\my-coding-projects\\oxford\\OxfordV2.csproj", "projectName": "OxfordV2", - "projectPath": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj", + "projectPath": "C:\\my-coding-projects\\oxford\\OxfordV2.csproj", "packagesPath": "C:\\Users\\Luke\\.nuget\\packages\\", - "outputPath": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\obj\\", + "outputPath": "C:\\my-coding-projects\\oxford\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" @@ -60,20 +59,6 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Runtime.win-x64", - "version": "[5.0.4, 5.0.4]" - }, - { - "name": "Microsoft.NETCore.App.Runtime.win-x64", - "version": "[5.0.4, 5.0.4]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", - "version": "[5.0.4, 5.0.4]" - } - ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" @@ -81,11 +66,6 @@ }, "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.104\\RuntimeIdentifierGraph.json" } - }, - "runtimes": { - "win10-x64": { - "#import": [] - } } } } \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 995faab..4255dd1 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,12 +1,8 @@ { "version": 2, - "dgSpecHash": "RUmr5PxIhqX6UOTTHCNOH+XaGj6mdukp3EhKokVe/np9xIKf95/5JoavuIP1zrPvn+QX6BIFk0gYfy28P0C2hQ==", + "dgSpecHash": "Byo8DJydZLLETiW7Bk69YRuc7ZeD9SyEgSbFJZaq8VyK6tl0lpPMNSSonoLJi5ERcIYvOzZQuyemvvijj6Xr1w==", "success": true, - "projectFilePath": "C:\\my-coding-projects\\Oxford-App\\OxfordV2\\OxfordV2.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Luke\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.4\\microsoft.netcore.app.runtime.win-x64.5.0.4.nupkg.sha512", - "C:\\Users\\Luke\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\5.0.4\\microsoft.windowsdesktop.app.runtime.win-x64.5.0.4.nupkg.sha512", - "C:\\Users\\Luke\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.4\\microsoft.aspnetcore.app.runtime.win-x64.5.0.4.nupkg.sha512" - ], + "projectFilePath": "C:\\my-coding-projects\\oxford\\OxfordV2.csproj", + "expectedPackageFiles": [], "logs": [] } \ No newline at end of file diff --git a/test-collection-for-import/info/ElementInfo.dat b/test-collection-for-import/info/ElementInfo.dat index 73797b1..d5b03be 100644 Binary files a/test-collection-for-import/info/ElementInfo.dat and b/test-collection-for-import/info/ElementInfo.dat differ diff --git a/test-collection-for-import/info/compon.dat b/test-collection-for-import/info/compon.dat index 6920856..a778666 100644 Binary files a/test-collection-for-import/info/compon.dat and b/test-collection-for-import/info/compon.dat differ diff --git a/test-collection-for-import/info/contents.dat b/test-collection-for-import/info/contents.dat index 06c3f94..90a70b7 100644 Binary files a/test-collection-for-import/info/contents.dat and b/test-collection-for-import/info/contents.dat differ diff --git a/test-collection-for-import/info/history.sub b/test-collection-for-import/info/history.sub index 37799df..b201cb2 100644 Binary files a/test-collection-for-import/info/history.sub and b/test-collection-for-import/info/history.sub differ diff --git a/test-collection-for-import/registry/Comment.lst b/test-collection-for-import/registry/Comment.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Comment.mem b/test-collection-for-import/registry/Comment.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Comment.ptr b/test-collection-for-import/registry/Comment.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Comment.rtf b/test-collection-for-import/registry/Comment.rtf new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Comment.rtx b/test-collection-for-import/registry/Comment.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Font.lst b/test-collection-for-import/registry/Font.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Font.mem b/test-collection-for-import/registry/Font.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Font.ptr b/test-collection-for-import/registry/Font.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Font.rtx b/test-collection-for-import/registry/Font.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Image.lst b/test-collection-for-import/registry/Image.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Image.mem b/test-collection-for-import/registry/Image.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Image.ptr b/test-collection-for-import/registry/Image.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Image.rtx b/test-collection-for-import/registry/Image.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Lexicon.lst b/test-collection-for-import/registry/Lexicon.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Lexicon.mem b/test-collection-for-import/registry/Lexicon.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Lexicon.ptr b/test-collection-for-import/registry/Lexicon.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Lexicon.rtx b/test-collection-for-import/registry/Lexicon.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Link.lst b/test-collection-for-import/registry/Link.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Link.mem b/test-collection-for-import/registry/Link.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Link.ptr b/test-collection-for-import/registry/Link.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Link.rtx b/test-collection-for-import/registry/Link.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Ole.lst b/test-collection-for-import/registry/Ole.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Ole.mem b/test-collection-for-import/registry/Ole.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Ole.ptr b/test-collection-for-import/registry/Ole.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Ole.rtx b/test-collection-for-import/registry/Ole.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Program.lst b/test-collection-for-import/registry/Program.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Program.mem b/test-collection-for-import/registry/Program.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Program.ptr b/test-collection-for-import/registry/Program.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Program.rtx b/test-collection-for-import/registry/Program.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Reference.lst b/test-collection-for-import/registry/Reference.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Reference.mem b/test-collection-for-import/registry/Reference.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Reference.ptr b/test-collection-for-import/registry/Reference.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Reference.rtx b/test-collection-for-import/registry/Reference.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Script.lst b/test-collection-for-import/registry/Script.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Script.mem b/test-collection-for-import/registry/Script.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Script.ptr b/test-collection-for-import/registry/Script.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Script.rtx b/test-collection-for-import/registry/Script.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Sound.lst b/test-collection-for-import/registry/Sound.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Sound.mem b/test-collection-for-import/registry/Sound.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Sound.ptr b/test-collection-for-import/registry/Sound.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Sound.rtx b/test-collection-for-import/registry/Sound.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Style.lst b/test-collection-for-import/registry/Style.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Style.mem b/test-collection-for-import/registry/Style.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Style.ptr b/test-collection-for-import/registry/Style.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Style.rtx b/test-collection-for-import/registry/Style.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Text.lst b/test-collection-for-import/registry/Text.lst index ec37af6..a409fb4 100644 Binary files a/test-collection-for-import/registry/Text.lst and b/test-collection-for-import/registry/Text.lst differ diff --git a/test-collection-for-import/registry/Text.mem b/test-collection-for-import/registry/Text.mem index 09ab815..a70acc2 100644 Binary files a/test-collection-for-import/registry/Text.mem and b/test-collection-for-import/registry/Text.mem differ diff --git a/test-collection-for-import/registry/Text.ptr b/test-collection-for-import/registry/Text.ptr index eb775c2..2a65969 100644 Binary files a/test-collection-for-import/registry/Text.ptr and b/test-collection-for-import/registry/Text.ptr differ diff --git a/test-collection-for-import/registry/Text.rtx b/test-collection-for-import/registry/Text.rtx index f5764ba..3306518 100644 Binary files a/test-collection-for-import/registry/Text.rtx and b/test-collection-for-import/registry/Text.rtx differ diff --git a/test-collection-for-import/registry/Video.lst b/test-collection-for-import/registry/Video.lst new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Video.mem b/test-collection-for-import/registry/Video.mem new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Video.ptr b/test-collection-for-import/registry/Video.ptr new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/registry/Video.rtx b/test-collection-for-import/registry/Video.rtx new file mode 100644 index 0000000..e69de29 diff --git a/test-collection-for-import/reports/Collecting retention data.txt b/test-collection-for-import/reports/Collecting retention data.txt index 3c7205f..647b9ba 100644 --- a/test-collection-for-import/reports/Collecting retention data.txt +++ b/test-collection-for-import/reports/Collecting retention data.txt @@ -1,12 +1,12 @@ SuperMemo Report Activity: Collecting retention data - Collection: c:\my-coding-projects\oxford-app\oxfordv2\test-collection-for-import - Date: Tuesday, May 4, 2021, 10:32:40 AM + Collection: c:\my-coding-projects\oxford\test-collection-for-import + Date: Wednesday, May 5, 2021, 9:55:33 PM SuperMemo 18 (Build 18.04, Mar 6, 2020) Retention data errors can be ignored -Process completed at 10:32:40 AM in 00:00:00 sec (Tuesday, May 4, 2021) +Process completed at 9:55:33 PM in 00:00:00 sec (Wednesday, May 5, 2021) NO ERRORS (Collecting retention data) diff --git a/test-collection-for-import/reports/Importing from C_!my-coding-projects!Oxford-App!OxfordV2!bin!Release!net5_0!win10-x64!OED-export_xml.txt b/test-collection-for-import/reports/Importing from C_!my-coding-projects!Oxford-App!OxfordV2!bin!Release!net5_0!win10-x64!OED-export_xml.txt deleted file mode 100644 index eeb29b9..0000000 --- a/test-collection-for-import/reports/Importing from C_!my-coding-projects!Oxford-App!OxfordV2!bin!Release!net5_0!win10-x64!OED-export_xml.txt +++ /dev/null @@ -1,12 +0,0 @@ -SuperMemo Report - Activity: Importing from C:\my-coding-projects\Oxford-App\OxfordV2\bin\Release\net5.0\win10-x64\OED-export.xml - Collection: c:\my-coding-projects\oxford-app\oxfordv2\test-collection-for-import - Date: Tuesday, May 4, 2021, 10:33:24 AM - SuperMemo 18 (Build 18.04, Mar 6, 2020) - - -Process completed at 10:33:25 AM in 00:00:00 sec (Tuesday, May 4, 2021) - -NO ERRORS (Importing from C:\my-coding-projects\Oxford-App\OxfordV2\bin\Release\net5.0\win10-x64\OED-export.xml) - -____________________________________________________________ diff --git a/test-collection-for-import/reports/Importing from C_!my-coding-projects!oxford!OED-export_xml.txt b/test-collection-for-import/reports/Importing from C_!my-coding-projects!oxford!OED-export_xml.txt new file mode 100644 index 0000000..a35a735 --- /dev/null +++ b/test-collection-for-import/reports/Importing from C_!my-coding-projects!oxford!OED-export_xml.txt @@ -0,0 +1,12 @@ +SuperMemo Report + Activity: Importing from C:\my-coding-projects\oxford\OED-export.xml + Collection: c:\my-coding-projects\oxford\test-collection-for-import + Date: Wednesday, May 5, 2021, 9:57:03 PM + SuperMemo 18 (Build 18.04, Mar 6, 2020) + + +Process completed at 9:57:03 PM in 00:00:00 sec (Wednesday, May 5, 2021) + +NO ERRORS (Importing from C:\my-coding-projects\oxford\OED-export.xml) + +____________________________________________________________ diff --git a/test-collection-for-import/stats/time.dat b/test-collection-for-import/stats/time.dat index 9db35bd..593f470 100644 Binary files a/test-collection-for-import/stats/time.dat and b/test-collection-for-import/stats/time.dat differ diff --git a/test-collection-for-import/stats/time.tim b/test-collection-for-import/stats/time.tim deleted file mode 100644 index 965bcaa..0000000 Binary files a/test-collection-for-import/stats/time.tim and /dev/null differ diff --git a/test-collection-for-import/stats/total.dat b/test-collection-for-import/stats/total.dat index a786e12..f66c9cf 100644 Binary files a/test-collection-for-import/stats/total.dat and b/test-collection-for-import/stats/total.dat differ