Show error when no files are selected for insertion.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 21 Jan 2010 15:16:45 +0000 (16:16 +0100)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 21 Jan 2010 15:16:45 +0000 (16:16 +0100)
src/de/todesbaum/jsite/i18n/jSite.properties
src/de/todesbaum/jsite/i18n/jSite_de.properties
src/de/todesbaum/jsite/main/Main.java

index c356bc8..2cff710 100644 (file)
@@ -170,6 +170,7 @@ jsite.project-files.index-not-html=<html><b>Default file is not HTML</b><br><br>
 jsite.project-files.no-node-running=<html><b>Node is not running</b><br><br>You can not insert a project if your node is not running.<br>Please start your node and try again.</html>
 jsite.project-files.no-custom-key=<html><b>No custom key for file</b><br><br>You specified not to insert <code>{0}</code><br>but failed to enter a key to redirect to!</html>
 jsite.project-files.no-node-selected=<html><b>No node selected</b><br><br>Please select a node from the menu!</html>
+jsite.project-files.no-files-to-insert=<html><b>No files to insert</b><br><br>You do not have any files selected for insertion!<br>Please select at least one file to insert.</html>
 jsite.project-files.insert-now=Insert now
 
 jsite.update-checker.found-version.title=Found New Version
index fddeda9..18974b3 100644 (file)
@@ -170,6 +170,7 @@ jsite.project-files.index-not-html=<html><b>Index-Datei ist kein HTML</b><br><br
 jsite.project-files.no-node-running=<html><b>Der Node l\u00e4uft nicht</b><br><br>Sie k\u00f6nnen das Projekt nicht einf\u00fcgen, wenn<br>Ihr Node nicht l\u00e4uft. Bitte starten Sie Ihren Node<br>und probieren Sie es erneut.</html>
 jsite.project-files.no-custom-key=<html><b>Kein externer Schl\u00fcssel</b><br><br>Sie haben angegeben, dass die Datei <code>{0}</code><br>nicht eingef\u00fcgt werden soll. Allerdings haben Sie<br>keinen extern erstellten Schl\u00fcssel angegeben.</html>
 jsite.project-files.no-node-selected=<html><b>Kein Node ausgew\u00e4hlt</b><br><br>Bitte w\u00e4hlen Sie einen Node aus dem Men\u00fc!</html>
+jsite.project-files.no-files-to-insert=<html><b>Keine Dateien einzuf\u00fcgen</b><br><br>Es sind keine Dateien zum Einf\u00fcgen ausgew\u00e4hlt! Bitte<br>w\u00e4hlen Sie mindestens eine Datei zum Einf\u00fcgen aus!</html>
 jsite.project-files.insert-now=Jetzt einf\u00fcgen
 
 jsite.update-checker.found-version.title=Neue Version gefunden
index 80e0dd0..a654c49 100644 (file)
@@ -539,13 +539,19 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen
                        }
                        Map<String, FileOption> fileOptions = project.getFileOptions();
                        Set<Entry<String, FileOption>> fileOptionEntries = fileOptions.entrySet();
+                       boolean insert = false;
                        for (Entry<String, FileOption> fileOptionEntry : fileOptionEntries) {
                                FileOption fileOption = fileOptionEntry.getValue();
+                               insert |= fileOption.isInsert() || fileOption.isInsertRedirect();
                                if (!fileOption.isInsert() && fileOption.isInsertRedirect() && ((fileOption.getCustomKey().length() == 0) || "CHK@".equals(fileOption.getCustomKey()))) {
                                        JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.project-files.no-custom-key"), fileOptionEntry.getKey()), null, JOptionPane.ERROR_MESSAGE);
                                        return;
                                }
                        }
+                       if (!insert) {
+                               JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.no-files-to-insert"), null, JOptionPane.ERROR_MESSAGE);
+                               return;
+                       }
                        boolean nodeRunning = false;
                        try {
                                nodeRunning = freenetInterface.isNodePresent();