Menu

Home

Daniele Serafini

Ftp Site Deployer is a Netbeans plugin. Was designed and is particularly usefull for upload changes to a web site developed in Java. This plugin allows to transfer a single file or a folder from the project view inside the Netbeans IDE.

Screenshot thumbnail
Set main project
Screenshot thumbnail
Main toolbar
Screenshot thumbnail
Upload menu
Screenshot thumbnail
New Feature: Show Change via FTP
Screenshot thumbnail
New Feature: Diff between local file and remote file


Project Members:


Discussion

  • Roberto B.

    Roberto B. - 2014-01-22

    Hi, I'm looking for auto ftp upload on saving. Is the feature present? I searched here but it seems not be implemented.

    Is it correct?

    It's useful only for small project and little number of developer, sure, but when this is the context we use notepad++ with NppFtp which do it like a charm.

     
    • Daniele Serafini

      Hi,
      I'm sorry but this feature is not present, we prefer to test changes before
      upload.
      Upload is only done by right click on the file tree or the project tree.

      Daniele.
      Il 22/gen/2014 12:28 "Roberto B." brug71@users.sf.net ha scritto:

      Hi, I'm looking for auto ftp upload on saving. Is the feature present? I
      searched here but it seems not be implemented.

      Is it correct?

      It's useful only for small project and little number of developer, sure,
      but when this is the context we use notepad++ with NppFtp which do it like
      a charm.


      Sent from sourceforge.net because you indicated interest in
      https://sourceforge.net/p/ftpsitedeployer/wiki/Home/

      To unsubscribe from further messages, please visit
      https://sourceforge.net/auth/subscriptions/

       
  • Luca Ciocci

    Luca Ciocci - 2014-01-22

    Hi Roberto,
    the feature "auto upload on save" is not available at the moment. Maybe it's possibile to develop it but actually I'm not sure about the existence of a callback of the event "save". We will put you request on the "feature requests"

     
  • Roberto B.

    Roberto B. - 2014-01-23

    Hi, Luca, this (from StackOverflow)can help?

    package yourpackage;
    
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JOptionPane;
    import org.openide.awt.ActionID;
    import org.openide.awt.ActionReference;
    import org.openide.awt.ActionReferences;
    import org.openide.awt.ActionRegistration;
    import org.openide.util.NbBundle.Messages;
    
    @ActionID(
            category = "File",
            id = "BZ.SaveAction"
    )
    @ActionRegistration(
            iconBase = "BZ/Save.png",
            displayName = "#CTL_SaveAction"
    )
    @ActionReferences({
        @ActionReference(path = "Menu/File", position = 750),
        @ActionReference(path = "Toolbars/File", position = 0),
        @ActionReference(path = "Shortcuts", name = "D-S")
    })
    @Messages("CTL_SaveAction=Save")
    public final class SaveAction implements ActionListener {
    
        org.openide.actions.SaveAction sa = org.openide.util.actions.CallbackSystemAction.get(org.openide.actions.SaveAction.class);
        @Override
        public void actionPerformed(ActionEvent e) {
            // custom code
            JOptionPane.showMessageDialog(null, "custum message ");
            sa.performAction();
        }
    }
    

    Another solution can be a new menu item with a shortcut "save&upload" so the current integration feature won't change. I mean integration with subversion and other like uploading file after build. By now the shortcut CTRL+U may be enough, I work mainly on php and js file. Thanks a lot.

     
  • Anton Presnyakov

    Thanks for the module! its great! i am working on php projects, and i've encountered some problems with diff window. I always see an empty file from remote ftp (on the right diff pane). I will appreciate any help:)

     

Log in to post a comment.