diff --git a/Core/src/com/basistech/df/cybertriage/autopsy/Bundle.properties b/Core/src/com/basistech/df/cybertriage/autopsy/Bundle.properties index 4d7a376395..caab36116d 100644 --- a/Core/src/com/basistech/df/cybertriage/autopsy/Bundle.properties +++ b/Core/src/com/basistech/df/cybertriage/autopsy/Bundle.properties @@ -5,6 +5,5 @@ CTIntegrationMissingDialog.title=Cyber Triage Importer Module Required CTIntegrationMissingDialog.descriptionLabel.text=

The Cyber Triage Importer Module is required to open this case.

To open this case:

-CTIntegrationMissingDialog.link.text=http://docs.cybertriage.com CTIntegrationMissingDialog.docsLabel.text=For more information, refer to the Cyber Triage Users Guide CTIntegrationMissingDialog.okButton.text=OK diff --git a/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.form b/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.form index 59955cb3dd..e61f2f6cbd 100644 --- a/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.form +++ b/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.form @@ -68,8 +68,8 @@ - - + + @@ -78,10 +78,6 @@ - - - - diff --git a/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.java b/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.java index 98690ced57..8fbec4abef 100644 --- a/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.java +++ b/Core/src/com/basistech/df/cybertriage/autopsy/CTIntegrationMissingDialog.java @@ -56,7 +56,7 @@ public class CTIntegrationMissingDialog extends javax.swing.JDialog { javax.swing.JLabel descriptionLabel = new javax.swing.JLabel(); javax.swing.JLabel docsLabel = new javax.swing.JLabel(); - javax.swing.JLabel link = new javax.swing.JLabel(); + link = new javax.swing.JLabel(); javax.swing.JPanel paddingPanel = new javax.swing.JPanel(); javax.swing.JButton okButton = new javax.swing.JButton(); @@ -87,7 +87,7 @@ public class CTIntegrationMissingDialog extends javax.swing.JDialog { gridBagConstraints.insets = new java.awt.Insets(0, 5, 5, 0); getContentPane().add(docsLabel, gridBagConstraints); - org.openide.awt.Mnemonics.setLocalizedText(link, org.openide.util.NbBundle.getMessage(CTIntegrationMissingDialog.class, "CTIntegrationMissingDialog.link.text")); // NOI18N + org.openide.awt.Mnemonics.setLocalizedText(link, "" + DOCS_PAGE_URL + ""); link.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); link.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(java.awt.event.MouseEvent evt) { @@ -160,5 +160,6 @@ public class CTIntegrationMissingDialog extends javax.swing.JDialog { } // Variables declaration - do not modify//GEN-BEGIN:variables + private javax.swing.JLabel link; // End of variables declaration//GEN-END:variables } diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java index 45a4d6dff6..b1d2f28c31 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java @@ -178,7 +178,7 @@ public class Case { private static final String CASE_ACTION_THREAD_NAME = "%s-case-action"; private static final String CASE_RESOURCES_THREAD_NAME = "%s-manage-case-resources"; private static final String NO_NODE_ERROR_MSG_FRAGMENT = "KeeperErrorCode = NoNode"; - private static final String CT_PROVIDER_PREFIX = "CTCustomContentProvider_"; + private static final String CT_PROVIDER_PREFIX = "CTStandardContentProvider_"; private static final Logger logger = Logger.getLogger(Case.class.getName()); private static final AutopsyEventPublisher eventPublisher = new AutopsyEventPublisher(); private static final Object caseActionSerializationLock = new Object();