mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-26 13:15:29 -04:00
automatically be expanded to include useful information about the checkin (including the file's revision number). With the switch over to SVN this was lost because SVN only does this expansion if you explicitly ask for it (for every single file). I have added a script to the contrib directory that sets the appropriate property to get SVN to do this expansion. This script will make it easy to do this every time new source files are added. It is called svn_expand_Id, the script contains some comments that explain the issue and how it addresses this. This checkin sets this property for a subset of the relevant files (trying to commit all files at once failed with svn crashing). In future the script will only affect those files for which the property was not set before.
45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
// $Id$
|
|
|
|
import java.awt.*;
|
|
import java.awt.event.*;
|
|
|
|
public class notsent extends Frame {
|
|
Label label1;
|
|
Label label2;
|
|
Button button1;
|
|
|
|
public notsent() {
|
|
super(" ");
|
|
|
|
setLayout(null);
|
|
addNotify();
|
|
setSize(500,200);
|
|
label1 = new Label("You have not completed all the necessary information");
|
|
label1.setFont(new Font("Dialog",Font.BOLD,14));
|
|
add(label1);
|
|
label1.setBounds(45,80,500,20);
|
|
label2 = new Label("Please go back and fill out all required fields.");
|
|
label2.setFont(new Font("Dialog",Font.BOLD,14));
|
|
add(label2);
|
|
label2.setBounds(70,100,500,20);
|
|
button1= new Button("Okay");
|
|
add(button1);
|
|
button1.setBounds(200,130,80,30);
|
|
button1.addActionListener(new ActionListener() {
|
|
public void actionPerformed(ActionEvent e) {
|
|
clickedButton1(); }});}
|
|
|
|
public synchronized void setVisible() {
|
|
setLocation(100,100);
|
|
}
|
|
|
|
public void clickedButton1() {
|
|
setVisible(false);
|
|
}
|
|
public void windowClosing(WindowEvent event){}
|
|
public void windowClosed(WindowEvent event) {}
|
|
public void windowDeiconified(WindowEvent event) {}
|
|
public void windowIconified(WindowEvent event){}
|
|
public void windowActivated(WindowEvent event) {}
|
|
public void windowOpened(WindowEvent event) {}
|
|
}
|