mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 00:16:16 +00:00
Merge pull request #883 from karlmortensen/remove_variable_arguments
Remove variable arguments
This commit is contained in:
commit
e96259feb5
@ -82,6 +82,14 @@ ReportGenerator.tagTable.header.tag=Tag
|
|||||||
ReportGenerator.tagTable.header.comment=Comment
|
ReportGenerator.tagTable.header.comment=Comment
|
||||||
ReportGenerator.tagTable.header.srcFile=Source File
|
ReportGenerator.tagTable.header.srcFile=Source File
|
||||||
ReportGenerator.progress.createdThumb.text=Creating thumbnails...
|
ReportGenerator.progress.createdThumb.text=Creating thumbnails...
|
||||||
|
ReportGenerator.htmlOutput.header.file=File
|
||||||
|
ReportGenerator.htmlOutput.header.tag=Tag
|
||||||
|
ReportGenerator.htmlOutput.header.comment=Comment
|
||||||
|
ReportGenerator.htmlOutput.header.size=Size (Bytes)
|
||||||
|
ReportGenerator.htmlOutput.header.timeCreated=Time Created
|
||||||
|
ReportGenerator.htmlOutput.header.timeAccessed=Last Accessed
|
||||||
|
ReportGenerator.htmlOutput.header.timeModified=Last Modified
|
||||||
|
ReportGenerator.htmlOutput.header.hash=Hash
|
||||||
ReportGenerator.thumbnailTable.name=Thumbnails
|
ReportGenerator.thumbnailTable.name=Thumbnails
|
||||||
ReportGenerator.thumbnailTable.desc=Contains thumbnails of images that are associated with tagged files and results.
|
ReportGenerator.thumbnailTable.desc=Contains thumbnails of images that are associated with tagged files and results.
|
||||||
ReportGenerator.writeKwHits.userSrchs=User Searches
|
ReportGenerator.writeKwHits.userSrchs=User Searches
|
||||||
|
@ -564,7 +564,16 @@ import org.sleuthkit.datamodel.TskData;
|
|||||||
tableProgress.get(module).updateStatusLabel(
|
tableProgress.get(module).updateStatusLabel(
|
||||||
NbBundle.getMessage(this.getClass(), "ReportGenerator.progress.processing",
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.progress.processing",
|
||||||
ARTIFACT_TYPE.TSK_TAG_FILE.getDisplayName()));
|
ARTIFACT_TYPE.TSK_TAG_FILE.getDisplayName()));
|
||||||
ArrayList<String> columnHeaders = new ArrayList<>(Arrays.asList("File", "Tag", "Comment")); //NON-NLS
|
ArrayList<String> columnHeaders = new ArrayList<>(Arrays.asList(
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.file"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.tag"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.comment"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.size"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.timeCreated"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.timeAccessed"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.timeModified"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "ReportGenerator.htmlOutput.header.hash")));
|
||||||
|
|
||||||
StringBuilder comment = new StringBuilder();
|
StringBuilder comment = new StringBuilder();
|
||||||
if (!tagNamesFilter.isEmpty()) {
|
if (!tagNamesFilter.isEmpty()) {
|
||||||
comment.append(
|
comment.append(
|
||||||
|
@ -536,6 +536,13 @@ import org.sleuthkit.datamodel.TskData.TSK_DB_FILES_TYPE_ENUM;
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add metadata about the file to HTML output
|
||||||
|
row.add(Long.toString(file.getSize()));
|
||||||
|
row.add(file.getCtimeAsDate());
|
||||||
|
row.add(file.getAtimeAsDate());
|
||||||
|
row.add(file.getMtimeAsDate());
|
||||||
|
row.add(file.getMd5Hash());
|
||||||
|
|
||||||
// save it in a folder based on the tag name
|
// save it in a folder based on the tag name
|
||||||
String localFilePath = saveContent(file, contentTag.getName().getDisplayName());
|
String localFilePath = saveContent(file, contentTag.getName().getDisplayName());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user