Minor layout change in custom tabular exporter dialog from Thad's suggestion.

Fixed small compile error in main/tests/.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2226 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2011-08-30 21:21:46 +00:00
parent a8815956cd
commit 90ad8247b7
2 changed files with 6 additions and 10 deletions

View File

@ -84,7 +84,7 @@ public class XlsExporterTests extends RefineTest {
@BeforeMethod
public void SetUp(){
SUT = new XlsExporter();
SUT = new XlsExporter(false);
stream = new ByteArrayOutputStream();
ProjectManager.singleton = new ProjectManagerStub();
projectMetadata = new ProjectMetadata();

View File

@ -59,22 +59,18 @@
<tr>
<td width="1%"><input type="radio" name="custom-tabular-exporter-recon" value="entity-name" /></td>
<td>Matched entity's name</td>
<td width="1%"><input type="radio" name="custom-tabular-exporter-recon" value="cell-content" /></td>
<td>Cell's content</td>
</tr>
<tr>
<td width="1%"><input type="radio" name="custom-tabular-exporter-recon" value="entity-id" /></td>
<td>Matched entity's ID</td>
</tr>
<tr>
<td width="1%"><input type="radio" name="custom-tabular-exporter-recon" value="cell-content" /></td>
<td>Cell's content</td>
</tr>
<tr>
<td width="1%"><input type="checkbox" bind="reconBlankUnmatchedCheckbox" /></td>
<td>Output nothing for unmatched cells</td>
</tr>
<tr>
<td width="1%"><input type="checkbox" bind="reconLinkCheckbox" /></td>
<td>Link to matched entity's page</td>
<td width="50%">Link to matched entity's page</td>
<td width="1%"><input type="checkbox" bind="reconBlankUnmatchedCheckbox" /></td>
<td width="50%">Output nothing for unmatched cells</td>
</tr>
</table></td></tr>