This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: doc2txt.bat | |
:: | |
:: This batch file converts all the files in a folder to .txt, | |
:: as long as LibreOffice supports them (e.g. .doc, .docx, .odt) | |
:: | |
:: 1. Make sure soffice.exe is in your PATH, e.g. | |
:: Edit Environment Variables, add New in user variables, and add C:\Program Files (x86)\LibreOffice 5\program | |
:: 2. Save this doc2txt.bat file to the folder alongside the files you want to convert. | |
:: 3. Make sure Libreoffice is not running. (A bug prevents soffice from working while Libreoffice is open.) | |
:: 4. Double-click doc2txt.bat. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript'> | |
var refreshJqlHistoryPane = function() { | |
var localHistory = localStorage.getItem('jqlHistory'); | |
if(localHistory){ | |
var history = JSON.parse(localHistory); | |
var historyEntries = history.map(function(jql){ | |
var display = jql; | |
if(display.length > 25){ | |
display = display.substr(0,22) + "..."; | |
} |