minor changes:
- remove some messages - changes some images
|
@ -49,8 +49,7 @@ public class WebEnv
|
|||
private static final String DIR_IMAGE = "images"; // /adempiere/images
|
||||
/** Stylesheet Name */
|
||||
private static final String STYLE_STD = "standard.css"; // /adempiere/standard.css
|
||||
/** Small Logo.
|
||||
/** Removing/modifying the adempiere logo is a violation of the license */
|
||||
/** Small Logo. */
|
||||
private static final String LOGO = "LogoSmall.gif"; // /adempiere/LogoSmall.gif
|
||||
/** Store Sub-Directory under BASE */
|
||||
private static final String DIR_STORE = "store"; // /adempiere/store
|
||||
|
@ -217,7 +216,6 @@ public class WebEnv
|
|||
|
||||
/**
|
||||
* Get Logo Path.
|
||||
* Removing/modifying the adempiere logo is a violation of the license
|
||||
* <p>
|
||||
* /adempiere/LogoSmall.gif
|
||||
* @return url to logo
|
||||
|
@ -229,15 +227,11 @@ public class WebEnv
|
|||
|
||||
/**
|
||||
* Get Logo Image HTML tag.
|
||||
* Removing/modifying the adempiere logo or copyright notice is a violation of the license
|
||||
* @return Image
|
||||
*/
|
||||
public static img getLogo()
|
||||
{
|
||||
/** Removing/modifying the adempiere logo is a violation of the license */
|
||||
return new img(getLogoURL()).setAlign(AlignType.RIGHT)
|
||||
// Changing the copyright notice in any way violates the license
|
||||
// and you'll be held liable for any damage claims
|
||||
.setAlt("© Jorg Janke/adempiere");
|
||||
} // getLogo
|
||||
|
||||
|
|
|
@ -148,7 +148,6 @@ public final class ALogin extends CDialog
|
|||
titleLabel.setRequestFocusEnabled(false);
|
||||
titleLabel.setToolTipText(Adempiere.getURL());
|
||||
titleLabel.setHorizontalTextPosition(SwingConstants.CENTER);
|
||||
/** Removing/modifying the Adempiere logo is a violation of the license */
|
||||
titleLabel.setIcon(Adempiere.getImageIconLogo());
|
||||
titleLabel.setText(Adempiere.getSubtitle());
|
||||
titleLabel.setVerticalTextPosition(SwingConstants.BOTTOM);
|
||||
|
|
|
@ -48,7 +48,6 @@ public final class AboutBox extends CDialog implements ActionListener
|
|||
}
|
||||
//
|
||||
labelVersion.setText(Adempiere.MAIN_VERSION + " @ " + Adempiere.DATE_VERSION);
|
||||
/** Removing/modifying the Adempiere copyright notice is a violation of the license */
|
||||
labelCopyright.setText(Adempiere.COPYRIGHT);
|
||||
infoArea.setText(CLogMgt.getInfo(null).toString());
|
||||
// create 5 pt border
|
||||
|
@ -103,7 +102,6 @@ public final class AboutBox extends CDialog implements ActionListener
|
|||
imageControl.setAlignmentX((float) 0.5);
|
||||
imageControl.setHorizontalAlignment(SwingConstants.CENTER);
|
||||
imageControl.setHorizontalTextPosition(SwingConstants.CENTER);
|
||||
/** Removing/modifying the Adempiere copyright notice is a violation of the license */
|
||||
imageControl.setIcon(Adempiere.getImageIconLogo());
|
||||
imageControl.setText(Adempiere.getSubtitle());
|
||||
imageControl.setVerticalTextPosition(SwingConstants.BOTTOM);
|
||||
|
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 517 B |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 517 B |
|
@ -186,7 +186,6 @@ public class Splash extends Frame
|
|||
*/
|
||||
public CImage ()
|
||||
{
|
||||
/** Removing/modifying the Adempiere logo is a violation of the license */
|
||||
m_image = Adempiere.getImageLogo();
|
||||
tracker.addImage(m_image, 0);
|
||||
}
|
||||
|
|
|
@ -811,7 +811,6 @@ public class LayoutEngine implements Pageable, Printable, Doc
|
|||
*/
|
||||
private void createStandardHeaderFooter()
|
||||
{
|
||||
/** Removing/modifying the Adempiere logo/trademark/copyright is a violation of the license */
|
||||
PrintElement element = new ImageElement(org.compiere.Adempiere.getImageLogoSmall(true)); // 48x15
|
||||
// element = new ImageElement(org.compiere.Adempiere.getImageLogo()); // 100x30
|
||||
element.layout(48, 15, false, MPrintFormatItem.FIELDALIGNMENTTYPE_LeadingLeft);
|
||||
|
@ -837,9 +836,8 @@ public class LayoutEngine implements Pageable, Printable, Doc
|
|||
font = tf.getPageFooter_Font();
|
||||
color = tf.getPageFooterFG_Color();
|
||||
//
|
||||
/** Removing/modifying the Adempiere logo/trademark/copyright is a violation of the license */
|
||||
element = new StringElement(Adempiere.ADEMPIERE_R, font, color, null, true);
|
||||
/** If you have a valid Adempiere support contract, you can use the following */
|
||||
/** You can use the following to customize reports for your product name */
|
||||
// element = new StringElement(Adempiere.NAME, font, color, null, true);
|
||||
element.layout (m_footer.width, 0, true, MPrintFormatItem.FIELDALIGNMENTTYPE_LeadingLeft);
|
||||
Point ft = m_footer.getLocation();
|
||||
|
|