35823 Commits

Author SHA1 Message Date
adam-m
accf9a6133 Add parent node to results containing query. 2011-12-29 13:50:14 -05:00
adam-m
777ed02452 move explorer components to tab, create a new TC that manages and delegates to the tab TCs 2011-12-29 13:06:11 -05:00
adam-m
423b614a2b Fixed text viewer vertical resizing 2011-12-28 15:52:45 -05:00
adam-m
3a2c860eb9 TSK-277 Add more advanced regular expression searching
- first iteration complete, with the result tree and highlight match find/preview
- solr schema change
2011-12-28 13:20:39 -05:00
adam-m
b12d4a812c move query escape to util class, also escape query in highlighting code 2011-12-27 17:37:44 -05:00
adam-m
32f33ed14c Escape Lucene query 2011-12-27 17:29:01 -05:00
adam-m
3ea53996be - regex search: show file hits as child nodes under the term matches
- further refactor Lucene query to reuse that query for regex detail view
2011-12-27 17:14:14 -05:00
adam-m
2557aed21c Also wrap the filesearch result node to filter out empty children set 2011-12-27 16:03:32 -05:00
adam-m
0388bfd065 fix DataResultViewerTable to support tree view. Wrapping of nodes needs to happen earlier if want to filter children out from the view. 2011-12-27 15:23:30 -05:00
adam-m
c33608d61f TSK-277 Add more advanced regular expression searching
- initial TermsComponent regex support without full results navigation/preview
2011-12-22 14:41:34 -05:00
adam-m
0a413a98b6 fix case in check for solr content when there is no content at all 2011-12-22 14:39:50 -05:00
Peter J. Martel
63846a6c74 Replace doc note about ContentNodes 2011-12-22 13:04:46 -05:00
adam-m
068e9807ad another minor optimization to string extraction 2011-12-22 11:08:29 -05:00
Peter J. Martel
891b6ad54f Extract hierarchy visitor from ContentChildren 2011-12-21 16:32:56 -05:00
adam-m
ef9d7e884d TSK-277 - Add more advanced regular expression searching
initial changes: refactored current lucene query code to new class, GUI changes
2011-12-21 16:23:22 -05:00
pidge
95067a9332 add "Extract Directory" action to DirectoryTree 2011-12-21 02:30:29 -05:00
Peter J. Martel
1a122c97ec Remove ContentNode stuff (runs now) 2011-12-20 17:56:13 -05:00
Peter J. Martel
9fa01015a4 Fix .gitignore 2011-12-20 17:54:38 -05:00
Peter J. Martel
15bfd26baa Merge branch 'master' into keyword-search-prototype (NOT RUNNABLE) 2011-12-20 17:52:50 -05:00
Peter J. Martel
ed32b62a7f Merge branch 'contentnode-cleanup' 2011-12-20 16:13:45 -05:00
Peter J. Martel
0f26f7c67c clear keyword search when topcomponent is opened 2011-12-20 15:47:20 -05:00
Peter J. Martel
d50de29090 add "tool tips" to content viewers 2011-12-20 15:39:11 -05:00
Peter J. Martel
51e454fdab rename "Extracted Content" viewer tab to "Text View" 2011-12-20 15:38:30 -05:00
Peter J. Martel
de7b66dbfd make "Context" text shorter 2011-12-20 15:38:13 -05:00
Peter J. Martel
044fc7669c rename "Snippet" column to "Context" 2011-12-20 15:37:59 -05:00
Peter J. Martel
25673930f3 Misc. trivia 2011-12-16 16:12:19 -05:00
Peter J. Martel
be10a4bb41 Add setPath to DataResult 2011-12-16 16:11:33 -05:00
Peter J. Martel
e8588b0be7 Add "Name" property to KeyValueNode 2011-12-16 13:22:36 -05:00
Peter J. Martel
3b61d89787 Tweak ExternalViewerAction to require file extensions 2011-12-16 12:42:10 -05:00
adam-m
9b22b67c9f Improve performance DataCOnversion util method to get ASCII from bytes - using string buffer instead of concatentation improves extraction speed by 2 orders of magnitude on larger files 2011-12-16 12:19:01 -05:00
Peter J. Martel
b4ab34e03a Cleanup ExternalViewerAction 2011-12-16 12:17:50 -05:00
Peter J. Martel
cc8ede4572 Clean up FileSearch DataResultFilterNode 2011-12-16 11:17:59 -05:00
adam-m
adb3488852 TSK-267 Extract English strings from smallish unknown files
- improve reporting of what is going on.
2011-12-16 10:00:39 -05:00
Peter J. Martel
53142025da Miscellaneous trival cleanup 2011-12-15 18:58:12 -05:00
Peter J. Martel
c903011f7a Cleanup ExtractAction
- extract File/Folder export to ExtractFscContentVisitor in ContentUtils
2011-12-15 18:01:37 -05:00
adam-m
3c827c868e - Split processing of ingestible and non-ingestible further.
- Do not feed to Solr if known as non-ingestible (original behavior).
2011-12-15 17:26:06 -05:00
adam-m
4381ad64db Abstract out GetFilesContentVisitor and provide 2 implementations: for known vs unknown file types. 2011-12-15 15:10:52 -05:00
adam-m
5285f1c6c8 TSK-267 - Extract English strings from smallish unknown files
- first iteration, for unknown content < 10MB
2011-12-15 13:23:05 -05:00
Peter J. Martel
8f9b2941e3 DataResultFilterNode cleanup
- actions generated from ContentVisitor
- use passed-in exploremanager instead of looking up the DirectoryTreeTopComponent
2011-12-14 14:44:57 -05:00
adam-m
87cc9d5476 - update comments in find
- Ingester: make sure files have been commited before updating flag.  Looking to reuse the Ingester instance so want to make sure it has consistant state.
2011-12-14 14:10:56 -05:00
adam-m
ae3d88f3f8 Made picture viewer preferred for picture content nodes (i.e. if it is supported). 2011-12-14 10:01:10 -05:00
adam-m
18d881c086 Added isSupported flag to isPreferred interface for the DCV.
This allows to "cache" whether the viewer is supported for the node and forces the caller do determine that first (which fits current model).
Potentially avoids redundant checks (like Solr queries) and does not rely on checking GUI state, which seems cleaner long term.
2011-12-14 09:51:02 -05:00
adam-m
20cd526844 Improve widget spacing/layout 2011-12-13 16:34:13 -05:00
adam-m
f6490c6f1c Merge branch 'keyword-search-prototype' of https://github.com/sleuthkit/autopsy into keyword-search-prototype 2011-12-13 15:37:41 -05:00
adam-m
c484666b7d TSK-270 Provide Hit Navigation in keyword search results
- now using html anchors, much more simple and accurate method, also should be easier to extend to other file types
2011-12-13 15:36:29 -05:00
Peter J. Martel
8776ab2bb7 Remove cleaned files 2011-12-13 14:11:13 -05:00
Peter J. Martel
ad841ccffc Fix DataContent bug 2011-12-13 14:09:32 -05:00
Peter J. Martel
987465cc6b Example project added 2011-12-13 14:09:31 -05:00
Peter J. Martel
15f4fe0592 Example project added 2011-12-13 13:16:14 -05:00
Peter J. Martel
2bad9d1603 KeyValue classes added to DataModel 2011-12-13 13:14:59 -05:00