fixed unmapped characters, added gitignore
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
bin/
|
||||||
|
build/
|
||||||
|
lib/
|
||||||
|
dist/
|
||||||
|
synthuse.properties
|
||||||
@@ -250,8 +250,8 @@ public class SynthuseDlg extends JFrame {
|
|||||||
return; //don't save bad xpath to combobox
|
return; //don't save bad xpath to combobox
|
||||||
if (config.xpathList == null)
|
if (config.xpathList == null)
|
||||||
config.xpathList = "";
|
config.xpathList = "";
|
||||||
if (!config.xpathList.contains(xpathItem + "<EFBFBD>")){
|
if (!config.xpathList.contains(xpathItem + "\u00ba")){
|
||||||
config.xpathList += xpathItem + "<EFBFBD>";
|
config.xpathList += xpathItem + "\u00ba";
|
||||||
refreshDatabinding();
|
refreshDatabinding();
|
||||||
cmbXpath.setSelectedItem(xpathItem);
|
cmbXpath.setSelectedItem(xpathItem);
|
||||||
}
|
}
|
||||||
@@ -413,7 +413,7 @@ public class SynthuseDlg extends JFrame {
|
|||||||
|
|
||||||
public void refreshDatabinding() {
|
public void refreshDatabinding() {
|
||||||
if (config.xpathList != null)
|
if (config.xpathList != null)
|
||||||
cmbXpath.setModel(new DefaultComboBoxModel<String>(config.xpathList.split("<EFBFBD>")));
|
cmbXpath.setModel(new DefaultComboBoxModel<String>(config.xpathList.split("\u00ba")));
|
||||||
if (config.xpathHightlight != null)
|
if (config.xpathHightlight != null)
|
||||||
XmlEditorKit.TAG_HIGHLIGHTED = config.xpathHightlight;
|
XmlEditorKit.TAG_HIGHLIGHTED = config.xpathHightlight;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
#Sun Feb 16 21:34:31 EST 2014
|
#Wed Mar 12 21:53:43 EDT 2014
|
||||||
DEFAULT_PROP_FILENAME=
|
DEFAULT_PROP_FILENAME=
|
||||||
urlList=
|
urlList=
|
||||||
xpathList=
|
xpathList=
|
||||||
|
|||||||
Reference in New Issue
Block a user