YaST Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
July 2007
- 26 participants
- 747 discussions
[yast-commit] r39148 - in /trunk/storage: libstorage/src/ package/ storage/src/include/ storage/src/modules/
by fehr@svn.opensuse.org 03 Jul '07
by fehr@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: fehr
Date: Tue Jul 3 16:52:34 2007
New Revision: 39148
URL: http://svn.opensuse.org/viewcvs/yast?rev=39148&view=rev
Log:
improve discrimination between EFI and win partitions (#287289)
Modified:
trunk/storage/libstorage/src/Storage.cc
trunk/storage/libstorage/src/Storage.h
trunk/storage/libstorage/src/StorageInterface.h
trunk/storage/package/yast2-storage.changes
trunk/storage/storage/src/include/do_proposal_flexible.ycp
trunk/storage/storage/src/modules/Storage.ycp
Modified: trunk/storage/libstorage/src/Storage.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/libstorage/src/Storage.c…
==============================================================================
--- trunk/storage/libstorage/src/Storage.cc (original)
+++ trunk/storage/libstorage/src/Storage.cc Tue Jul 3 16:52:34 2007
@@ -5639,7 +5639,8 @@
bool
Storage::getFreeInfo( const string& device, unsigned long long& resize_free,
unsigned long long& df_free,
- unsigned long long& used, bool& win, bool use_cache )
+ unsigned long long& used, bool& win, bool& efi,
+ bool use_cache )
{
bool ret = false;
assertInit();
@@ -5649,7 +5650,7 @@
if( findVolume( device, vol ) )
{
if( use_cache && getFreeInf( vol->device(), df_free, resize_free,
- used, win, ret ))
+ used, win, efi, ret ))
{
}
else
@@ -5723,6 +5724,9 @@
win = access( f.c_str(), R_OK )==0;
i++;
}
+ efi = vol->getFs()==VFAT && checkDir( mp + "/efi" );
+ if( efi )
+ win = false;
}
if( needUmount )
{
@@ -5737,7 +5741,8 @@
if( !ret )
vol->crUnsetup();
}
- setFreeInfo( vol->device(), df_free, resize_free, used, win, ret );
+ setFreeInfo( vol->device(), df_free, resize_free, used, win, efi,
+ ret );
}
}
if( ret )
@@ -5749,19 +5754,21 @@
void Storage::setFreeInfo( const string& device, unsigned long long df_free,
unsigned long long resize_free,
- unsigned long long used, bool win, bool resize_ok )
+ unsigned long long used, bool win, bool efi,
+ bool resize_ok )
{
- y2milestone( "device:%s df_free:%llu resize_free:%llu used:%llu win:%d",
- device.c_str(), df_free, resize_free, used, win );
+ y2milestone( "device:%s df_free:%llu resize_free:%llu used:%llu win:%d efi:%d",
+ device.c_str(), df_free, resize_free, used, win, efi );
- FreeInfo inf( df_free, resize_free, used, win, resize_ok );
+ FreeInfo inf( df_free, resize_free, used, win, efi, resize_ok );
freeInfo[device] = inf;
}
bool
Storage::getFreeInf( const string& device, unsigned long long& df_free,
unsigned long long& resize_free,
- unsigned long long& used, bool& win, bool& resize_ok )
+ unsigned long long& used, bool& win, bool& efi,
+ bool& resize_ok )
{
map<string,FreeInfo>::iterator i = freeInfo.find( device );
bool ret = i!=freeInfo.end();
@@ -5771,12 +5778,13 @@
resize_free = i->second.resize_free;
used = i->second.used;
win = i->second.win;
+ efi = i->second.efi;
resize_ok = i->second.rok;
}
y2milestone( "device:%s ret:%d", device.c_str(), ret );
if( ret )
- y2milestone( "df_free:%llu resize_free:%llu used:%llu win:%d resize_ok:%d",
- df_free, resize_free, used, win, resize_ok );
+ y2milestone( "df_free:%llu resize_free:%llu used:%llu win:%d efi:%d resize_ok:%d",
+ df_free, resize_free, used, win, efi, resize_ok );
return( ret );
}
Modified: trunk/storage/libstorage/src/Storage.h
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/libstorage/src/Storage.h…
==============================================================================
--- trunk/storage/libstorage/src/Storage.h (original)
+++ trunk/storage/libstorage/src/Storage.h Tue Jul 3 16:52:34 2007
@@ -184,12 +184,15 @@
unsigned long long df_free;
unsigned long long used;
bool win;
+ bool efi;
bool rok;
- FreeInfo() { resize_free=df_free=used=0; win=rok=false; }
+ FreeInfo() { resize_free=df_free=used=0; efi=win=rok=false; }
FreeInfo( unsigned long long df,
unsigned long long resize,
- unsigned long long usd, bool w=false, bool r=true )
- { resize_free=resize; df_free=df; used=usd; win=w; rok=r; }
+ unsigned long long usd, bool w=false, bool e=false,
+ bool r=true )
+ { resize_free=resize; df_free=df; used=usd; win=w;
+ efi=e, rok=r; }
};
public:
@@ -356,7 +359,8 @@
bool readFstab( const string& dir, deque<storage::VolumeInfo>& infos);
bool getFreeInfo( const string& device, unsigned long long& resize_free,
unsigned long long& df_free,
- unsigned long long& used, bool& win, bool use_cache );
+ unsigned long long& used, bool& win, bool& efi,
+ bool use_cache );
int createBackupState( const string& name );
int removeBackupState( const string& name );
int restoreBackupState( const string& name );
@@ -1614,10 +1618,12 @@
void deleteBackups();
void setFreeInfo( const string& device, unsigned long long df_free,
unsigned long long resize_free,
- unsigned long long used, bool win, bool resize_ok );
+ unsigned long long used, bool win, bool efi,
+ bool resize_ok );
bool getFreeInf( const string& device, unsigned long long& df_free,
unsigned long long& resize_free,
- unsigned long long& used, bool& win, bool& resize_ok );
+ unsigned long long& used, bool& win, bool& efi,
+ bool& resize_ok );
// protected internal member variables
bool readonly;
Modified: trunk/storage/libstorage/src/StorageInterface.h
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/libstorage/src/StorageIn…
==============================================================================
--- trunk/storage/libstorage/src/StorageInterface.h (original)
+++ trunk/storage/libstorage/src/StorageInterface.h Tue Jul 3 16:52:34 2007
@@ -1979,7 +1979,7 @@
unsigned long long& resize_free,
unsigned long long& df_free,
unsigned long long& used,
- bool& win, bool use_cache ) = 0;
+ bool& win, bool& efi, bool use_cache ) = 0;
/**
* Read fstab and cryptotab, if existent, from a specified directory and
Modified: trunk/storage/package/yast2-storage.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.ch…
==============================================================================
--- trunk/storage/package/yast2-storage.changes (original)
+++ trunk/storage/package/yast2-storage.changes Tue Jul 3 16:52:34 2007
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Tue Jul 3 16:50:38 CEST 2007 - fehr(a)suse.de
+
+- improve discrimination between EFI and win partitions (#287289)
+
+-------------------------------------------------------------------
Mon Jul 2 19:36:31 CEST 2007 - fehr(a)suse.de
- prevent some rpmlint warnings
Modified: trunk/storage/storage/src/include/do_proposal_flexible.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/include/do_p…
==============================================================================
--- trunk/storage/storage/src/include/do_proposal_flexible.ycp (original)
+++ trunk/storage/storage/src/include/do_proposal_flexible.ycp Tue Jul 3 16:52:34 2007
@@ -1661,7 +1661,8 @@
{
win = p["winfo"]:$[];
y2milestone( "try_resize_windows win=%1", win );
- if( win != nil && win["ok"]:false && p["size_k"]:0 > 1024*1024 )
+ if( win != nil && win["ok"]:false && p["size_k"]:0 > 1024*1024 &&
+ !win["efi"]:false )
{
p["winfo"] = win;
p["resize"] = true;
@@ -2558,7 +2559,7 @@
if( ret )
{
if( assert_cons_fs )
- ret = p["winfo","ok"]:false;
+ ret = p["winfo","ok"]:false && !p["winfo","efi"]:false;
else
ret = size(p["winfo"]:$[])>0;
}
Modified: trunk/storage/storage/src/modules/Storage.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Stor…
==============================================================================
--- trunk/storage/storage/src/modules/Storage.ycp (original)
+++ trunk/storage/storage/src/modules/Storage.ycp Tue Jul 3 16:52:34 2007
@@ -743,11 +743,12 @@
integer resize_free = 0;
integer df_free = 0;
boolean win_disk = false;
+ boolean efi = false;
boolean r = false;
r = LibStorage::StorageInterface::getFreeInfo( sint, device, resize_free,
df_free, used, win_disk,
- used_fs==`ntfs );
+ efi, used_fs==`ntfs );
resize_free = resize_free * 1024; // Byte
df_free = df_free * 1024; // Byte
@@ -830,6 +831,7 @@
"df_free" : df_free,
"used":used,
"win_disk":win_disk,
+ "efi":efi,
"linux_size":linux_size,
"max_win_size":used + resize_free + add_free - min_linux_size,
"ntfs" : (used_fs == `ntfs),
@@ -3166,6 +3168,14 @@
return( ret );
}
+define boolean IsEfiPartition( map p )
+ {
+ map m = GetFreeSpace( p["device"]:"", 0, p["used_fs"]:`none, false );
+ boolean ret = m["efi"]:false;
+ y2milestone( "IsEfiPartition ret:%1", ret );
+ return( ret );
+ }
+
/**
* Search in the list partitions for windows partitions and add the key
* "mount" to the found windows partitions.
@@ -3198,7 +3208,7 @@
((partnum<=max_prim)==primary) &&
foreign_nr < 24 &&
Partitions::IsDosWinNtPartition(fsid) &&
- (!Arch::ia64() || partition["size_k"]:0 >= 1024*1024) &&
+ (!Arch::ia64() || !IsEfiPartition(partition)) &&
contains( [`vfat, `ntfs], partition["used_fs"]:`none ))
{
new_partition["fstopt"] =
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39147 - in /branches/tmp/sh/mod-ui: core/libyui/src/ qt/src/
by sh-sh-sh@svn.opensuse.org 03 Jul '07
by sh-sh-sh@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: sh-sh-sh
Date: Tue Jul 3 16:49:18 2007
New Revision: 39147
URL: http://svn.opensuse.org/viewcvs/yast?rev=39147&view=rev
Log:
ported MultiLineEdit
Modified:
branches/tmp/sh/mod-ui/core/libyui/src/ChangeLog
branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am
branches/tmp/sh/mod-ui/core/libyui/src/YCPDialogParser.cc
branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.cc
branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.h
branches/tmp/sh/mod-ui/core/libyui/src/YUI.h
branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc
branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h
branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc
branches/tmp/sh/mod-ui/qt/src/YQUI.h
branches/tmp/sh/mod-ui/qt/src/YQUI_widgets.cc
branches/tmp/sh/mod-ui/qt/src/YQWidgetFactory.cc
Modified: branches/tmp/sh/mod-ui/core/libyui/src/ChangeLog
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/ChangeLog (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/ChangeLog Tue Jul 3 16:49:18 2007
@@ -318,3 +318,10 @@
functions each - see the respective header files. See the YQ sample
implementations for more details.
+
+2007-07-03 16:30 sh(a)suse.de
+
+* Ported YMultiLineEdit
+ - renamed text() -> value()
+ - renamed setText() -> setValue()
+ - new: YMultiLineEdit::defaultVisibleLines() (use this in preferredHeight() )
\ No newline at end of file
Modified: branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am Tue Jul 3 16:49:18 2007
@@ -102,9 +102,11 @@
YUIPlugin.h \
YUISymbols.h \
YUI_util.h \
+ YWidget.h \
YWidgetFactory.h \
YWidgetID.h \
YWidgetOpt.h \
+ YWidget_OptimizeChanges.h \
\
YAlignment.h \
YBarGraph.h \
@@ -152,7 +154,6 @@
YTime.h \
YTransText.h \
YTree.h \
- YWidget.h \
YWizard.h \
TreeItem.h
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YCPDialogParser.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YCPDialogParser.cc (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YCPDialogParser.cc Tue Jul 3 16:49:18 2007
@@ -54,6 +54,7 @@
#include "YLayoutBox.h"
#include "YMenuButton.h"
#include "YMultiSelectionBox.h"
+#include "YMultiLineEdit.h"
#include "YPackageSelector.h"
#include "YPushButton.h"
#include "YRadioButton.h"
@@ -1710,9 +1711,9 @@
* This widget is a multiple line text entry field with a label above it.
* An initial text can be provided.
*
- * @note You can and should set a keyboard shortcut within the
- * label. When the user presses the hotkey, the corresponding MultiLineEdit
- * widget will get the keyboard focus.
+ * Note: You can and should set a keyboard shortcut within the label. When the
+ * user presses the hotkey, the corresponding MultiLineEdit widget will get the
+ * keyboard focus.
**/
YWidget *
@@ -1728,12 +1729,21 @@
term->toString().c_str() );
return 0;
}
+
+ rejectAllOptions( term, optList );
+
+ string label = term->value( argnr )->asString()->value();
+ string initialValue;
+
+ if ( term->size() >= argnr + 2 )
+ initialValue = term->value( argnr+1 )->asString()->value();
- YCPString initial_text( "" );
- if ( term->size() >= argnr + 2 ) initial_text = term->value( argnr+1 )->asString();
+ YMultiLineEdit * multiLineEdit = YUI::widgetFactory()->createMultiLineEdit( parent, label );
- rejectAllOptions( term,optList );
- return YUI::ui()->createMultiLineEdit( parent, opt, term->value( argnr )->asString(), initial_text );
+ if ( ! initialValue.empty() )
+ multiLineEdit->setValue( initialValue );
+
+ return multiLineEdit;
}
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.cc (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.cc Tue Jul 3 16:49:18 2007
@@ -17,9 +17,6 @@
/-*/
-#include <ycp/YCPSymbol.h>
-#include <ycp/YCPBoolean.h>
-#include <ycp/YCPInteger.h>
#define y2log_component "ui"
#include <ycp/y2log.h>
@@ -27,93 +24,128 @@
#include "YMacroRecorder.h"
#include "YMultiLineEdit.h"
+#define DEFAULT_VISIBLE_LINES 3
-YMultiLineEdit::YMultiLineEdit( const YWidgetOpt & opt, const YCPString & label )
- : YWidget( opt )
- , _label( label )
+struct YMultiLineEditPrivate
{
+ YMultiLineEditPrivate( const string & label )
+ : label( label )
+ , inputMaxLength( -1 )
+ , defaultVisibleLines( DEFAULT_VISIBLE_LINES )
+ {}
+
+ string label;
+ int inputMaxLength;
+ int defaultVisibleLines;
+};
+
+
+
+
+YMultiLineEdit::YMultiLineEdit( YWidget * parent, const string & label )
+ : YWidget( parent )
+ , priv( new YMultiLineEditPrivate( label ) )
+{
+ YUI_CHECK_NEW( priv );
+
setDefaultStretchable( YD_HORIZ, true );
setDefaultStretchable( YD_VERT, true );
}
-void YMultiLineEdit::setLabel( const YCPString & newLabel )
+YMultiLineEdit::~YMultiLineEdit()
{
- _label = newLabel;
+ // NOP
}
+string YMultiLineEdit::label()
+{
+ return priv->label;
+}
+
-YCPValue YMultiLineEdit::changeWidget( const YCPSymbol & property, const YCPValue & newValue )
+void YMultiLineEdit::setLabel( const string & label )
{
- string s = property->symbol();
+ priv->label = label;
+}
- /**
- * @property string Value
- * The text contents as one large string containing newlines.
- */
- if ( s == YUIProperty_Value )
- {
- if ( newValue->isString() )
- {
- setText( newValue->asString() );
- return YCPBoolean( true );
- }
- else
- {
- y2error( "MultiLineEdit: Invalid Value property - string expected, not %s",
- newValue->toString().c_str() );
- return YCPBoolean( false );
- }
- }
- /**
- * @property string Label The label above the log text.
- */
- else if ( s == YUIProperty_Label )
- {
- if ( newValue->isString() )
- {
- setLabel( newValue->asString() );
- return YCPBoolean( true );
- }
- else
- {
- y2error( "MultiLineEdit: Invalid Label property - string expected, not %s",
- newValue->toString().c_str() );
+int YMultiLineEdit::inputMaxLength() const
+{
+ return priv->inputMaxLength;
+}
- return YCPBoolean( false );
- }
- }
- /**
- * @property integer InputMaxLength limit the number of characters which
- * can be inserted. A value of -1 means unlimited input.
- */
- else if ( s == YUIProperty_InputMaxLength )
+
+void YMultiLineEdit::setInputMaxLength( int len )
+{
+ priv->inputMaxLength = len;
+}
+
+
+int YMultiLineEdit::defaultVisibleLines() const
+{
+ return priv->defaultVisibleLines;
+}
+
+
+void YMultiLineEdit::setDefaultVisibleLines( int newVisibleLines )
+{
+ priv->defaultVisibleLines = newVisibleLines;
+}
+
+
+const YPropertySet &
+YMultiLineEdit::propertySet()
+{
+ static YPropertySet propSet;
+
+ if ( propSet.isEmpty() )
{
- if ( newValue->isInteger() )
- {
- setInputMaxLength( newValue->asInteger()->value() );
- return YCPBoolean( true );
- }
- else
- {
- y2error( "MultiLineEdit: Invalid parameter %s for InputMaxLength property. Must be integer.",
- newValue->toString().c_str() );
- return YCPBoolean( false );
- }
+ /*
+ * @property string Value the MultiLineEdit text contents (with newlines)
+ * @property string Label caption above the MultiLineEdit
+ * @property integer InputMaxLength maximum number of input characters
+ */
+ propSet.add( YProperty( YUIProperty_Value, YStringProperty ) );
+ propSet.add( YProperty( YUIProperty_Label, YStringProperty ) );
+ propSet.add( YProperty( YUIProperty_InputMaxLength, YIntegerProperty ) );
+ propSet.add( YWidget::propertySet() );
}
- else return YWidget::changeWidget( property, newValue );
+
+ return propSet;
}
+bool
+YMultiLineEdit::setProperty( const string & propertyName, const YPropertyValue & val )
+{
+ propertySet().check( propertyName, val.type() ); // throws exceptions if not found or type mismatch
-YCPValue YMultiLineEdit::queryWidget( const YCPSymbol & property )
+ if ( propertyName == YUIProperty_Value ) setValue( val.stringVal() );
+ else if ( propertyName == YUIProperty_Label ) setLabel( val.stringVal() );
+ else if ( propertyName == YUIProperty_InputMaxLength ) setInputMaxLength( val.integerVal() );
+ else
+ {
+ YWidget::setProperty( propertyName, val );
+ }
+
+ return true; // success -- no special processing necessary
+}
+
+
+YPropertyValue
+YMultiLineEdit::getProperty( const string & propertyName )
{
- string s = property->symbol();
- if ( s == YUIProperty_Label ) return label();
- else if ( s == YUIProperty_Value ) return text();
- else return YWidget::queryWidget( property );
+ propertySet().check( propertyName ); // throws exceptions if not found
+
+ if ( propertyName == YUIProperty_Value ) return YPropertyValue( value() );
+ else if ( propertyName == YUIProperty_Label ) return YPropertyValue( label() );
+ else if ( propertyName == YUIProperty_InputMaxLength ) return YPropertyValue( inputMaxLength() );
+ else
+ {
+ return YWidget::getProperty( propertyName );
+ }
}
@@ -122,6 +154,3 @@
macroRecorder->recordWidgetProperty( this, YUIProperty_Value );
}
-void YMultiLineEdit::setInputMaxLength( const YCPInteger & numberOfChars )
-{
-}
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.h (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YMultiLineEdit.h Tue Jul 3 16:49:18 2007
@@ -20,10 +20,9 @@
#define YMultiLineEdit_h
#include "YWidget.h"
-#include <ycp/YCPString.h>
-#include <deque>
class YMacroRecorder;
+class YMultiLineEditPrivate;
class YMultiLineEdit : public YWidget
@@ -32,56 +31,127 @@
/**
* Constructor.
**/
- YMultiLineEdit( const YWidgetOpt & opt,
- const YCPString & label );
+ YMultiLineEdit( YWidget * parent, const string & label );
public:
/**
+ * Destructor.
+ **/
+ virtual ~YMultiLineEdit();
+
+ /**
* Returns a descriptive name of this widget class for logging,
* debugging etc.
**/
virtual const char * widgetClass() { return "YMultiLineEdit"; }
+ /**
+ * Get the current value (the text entered by the user or set from the
+ * outside) of this MultiLineEdit.
+ *
+ * Derived classes are required to implement this.
+ **/
+ virtual string value() = 0;
/**
- * Implements the ui command changeWidget for the widget specific
- * properties.
+ * Set the current value (the text entered by the user or set from the
+ * outside) of this MultiLineEdit.
+ *
+ * Derived classes are required to implement this.
**/
- YCPValue changeWidget( const YCPSymbol & property, const YCPValue & newvalue );
+ virtual void setValue( const string & text ) = 0;
/**
- * Implements the ui command changeWidget for the widget specific properties.
+ * Get the label (the caption above the MultiLineEdit).
**/
- YCPValue queryWidget( const YCPSymbol & property );
+ string label();
+ /**
+ * Set the label (the caption above the MultiLineEdit).
+ *
+ * Derived classes are free to reimplement this, but they should call this
+ * base class method at the end of the overloaded function.
+ **/
+ virtual void setLabel( const string & label );
/**
- * Set the label above the log lines. Overload this, but call
- * YMultiLineEdit::setLabel at the end of your own function.
+ * The maximum input length, i.e., the maximum number of characters the
+ * user can enter. -1 means no limit.
**/
- virtual void setLabel( const YCPString & newLabel );
+ int inputMaxLength() const;
/**
- * Set the edited text.
+ * Set the maximum input length, i.e., the maximum number of characters the
+ * user can enter. -1 means no limit.
+ *
+ * Derived classes are free to reimplement this, but they should call this
+ * base class method at the end of the overloaded function.
**/
- virtual void setText( const YCPString & text ) = 0;
+ virtual void setInputMaxLength( int numberOfChars );
/**
- * Get the edited text.
+ * Return the number of input lines that are visible by default.
+ *
+ * This is what the widget would like to get (which will be reflected by
+ * preferredHeight() ), not what it currently actually has due to layout
+ * constraints.
**/
- virtual YCPString text() = 0;
+ int defaultVisibleLines() const;
/**
- * Get the label above the log lines.
+ * Set the number of input lines that are visible by default.
+ *
+ * This is what the widget would like to get (which will be reflected by
+ * preferredHeight() ), not what it currently actually has due to layout
+ * constraints.
+ *
+ * Notice that since a MultiLineEdit is stretchable in both dimensions, it
+ * might get more or less screen space, depending on the layout. This value
+ * is only meaningful if there are no other layout constraints.
+ *
+ * Changing this value will not trigger a re-layout.
+ *
+ * Derived classes can overwrite this function (but should call this base
+ * class function in the new function implementation), but it will normally
+ * be sufficient to query defaultVisibleLines() in preferredHeight().
**/
- YCPString label() const { return _label; }
+ virtual void setDefaultVisibleLines( int newVisibleLines );
+
+ /**
+ * Set a property.
+ * Reimplemented from YWidget.
+ *
+ * This function may throw YUIPropertyExceptions.
+ *
+ * This function returns 'true' if the value was successfully set and
+ * 'false' if that value requires special handling (not in error cases:
+ * those are covered by exceptions).
+ **/
+ virtual bool setProperty( const string & propertyName,
+ const YPropertyValue & val );
+
+ /**
+ * Get a property.
+ * Reimplemented from YWidget.
+ *
+ * This method may throw YUIPropertyExceptions.
+ **/
+ virtual YPropertyValue getProperty( const string & propertyName );
+
+ /**
+ * Return this class's property set.
+ * This also initializes the property upon the first call.
+ *
+ * Reimplemented from YWidget.
+ **/
+ virtual const YPropertySet & propertySet();
/**
* Get the string of this widget that holds the keyboard shortcut.
*
* Reimplemented from YWidget.
**/
- virtual string shortcutString() { return label()->value(); }
+ virtual string shortcutString() { return label(); }
/**
* Set the string of this widget that holds the keyboard shortcut.
@@ -89,23 +159,16 @@
* Reimplemented from YWidget.
**/
virtual void setShortcutString( const string & str )
- { setLabel( YCPString( str ) ); }
-
+ { setLabel( str ); }
+
/**
* The name of the widget property that will return user input.
* Inherited from YWidget.
**/
const char *userInputProperty() { return YUIProperty_Value; }
-
- /**
- * Specify the amount of characters which can be inserted.
- *
- * Overload this to limit the input.
- **/
- virtual void setInputMaxLength( const YCPInteger & numberOfChars );
-private:
+private:
/**
* Save the widget's user input to a macro recorder.
* Intentionally declared as "private" so all macro recording internals are
@@ -114,9 +177,7 @@
virtual void saveUserInput( YMacroRecorder *macroRecorder );
- // Data members
-
- YCPString _label;
+ ImplPtr<YMultiLineEditPrivate> priv;
};
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YUI.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YUI.h (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YUI.h Tue Jul 3 16:49:18 2007
@@ -448,7 +448,6 @@
virtual YDialog *createDialog( YWidgetOpt & opt ) = 0;
virtual YWidget *createLogView( YWidget *parent, YWidgetOpt & opt, const YCPString & label, int visibleLines, int maxLines ) = 0;
virtual YWidget *createMenuButton( YWidget *parent, YWidgetOpt & opt, const YCPString & label ) = 0;
- virtual YWidget *createMultiLineEdit( YWidget *parent, YWidgetOpt & opt, const YCPString & label, const YCPString & text ) = 0;
virtual YWidget *createTree( YWidget *parent, YWidgetOpt & opt, const YCPString & label ) = 0;
virtual YWidget *createTable( YWidget *parent, YWidgetOpt & opt, vector<string> header ) = 0;
virtual YWidget *createProgressBar( YWidget *parent, YWidgetOpt & opt, const YCPString & label, const YCPInteger & maxprogress, const YCPInteger & progress ) = 0;
Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiL…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc Tue Jul 3 16:49:18 2007
@@ -29,167 +29,181 @@
#include "YEvent.h"
#include "YQMultiLineEdit.h"
-#define VISIBLE_LINES 3
-
-YQMultiLineEdit::YQMultiLineEdit( QWidget * parent,
- const YWidgetOpt & opt,
- const YCPString & label,
- const YCPString & initialText )
- : QVBox( parent )
- , YMultiLineEdit( opt, label )
- , InputMaxLength( -1 )
+YQMultiLineEdit::YQMultiLineEdit( YWidget * parent, const string & label )
+ : QVBox( (QWidget *) parent->widgetRep() )
+ , YMultiLineEdit( parent, label )
{
setWidgetRep( this );
setSpacing( YQWidgetSpacing );
- setMargin( YQWidgetMargin );
-
- if ( label->value().length() > 0 )
- {
- _qt_label = new QLabel( fromUTF8( label->value() ), this );
- _qt_label->setTextFormat( QLabel::PlainText );
- }
- else
- _qt_label = 0;
-
- _qt_textedit = new QTextEdit( this );
- _qt_textedit->setTextFormat( Qt::PlainText );
- _qt_textedit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
- _qt_textedit->setText( fromUTF8( initialText->value() ) );
+ setMargin ( YQWidgetMargin );
- if ( _qt_label )
- _qt_label->setBuddy( _qt_textedit );
+ _qt_label = new QLabel( fromUTF8( label ), this );
+ _qt_label->setTextFormat( QLabel::PlainText );
+
+ if ( label.empty() )
+ _qt_label->hide();
- connect( _qt_textedit, SIGNAL( textChanged( void ) ), this, SLOT( changed ( void ) ) );
-}
+ _qt_textEdit = new QTextEdit( this );
+ _qt_textEdit->setTextFormat( Qt::PlainText );
+ _qt_textEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
+ _qt_label->setBuddy( _qt_textEdit );
-void YQMultiLineEdit::setEnabled( bool enabled )
-{
- _qt_textedit->setEnabled( enabled );
- YWidget::setEnabled( enabled );
+ connect( _qt_textEdit, SIGNAL( textChanged( void ) ),
+ this, SLOT ( changed ( void ) ) );
}
-int YQMultiLineEdit::preferredWidth()
+YQMultiLineEdit::~YQMultiLineEdit()
{
- return max( 30, sizeHint().width() );
+ // NOP
}
-int YQMultiLineEdit::preferredHeight()
+string YQMultiLineEdit::value()
{
- int hintHeight = VISIBLE_LINES * _qt_textedit->fontMetrics().lineSpacing();
- hintHeight += _qt_textedit->frameWidth() * 2 + YQWidgetMargin * 2;
-
- if ( _qt_label && _qt_label->isShown() )
- hintHeight += _qt_label->sizeHint().height() + YQWidgetSpacing;
-
- return max( 10, hintHeight );
+ return toUTF8( _qt_textEdit->text() );
}
-void YQMultiLineEdit::setSize( int newWidth, int newHeight )
+void YQMultiLineEdit::setValue( const string & text )
{
- resize( newWidth, newHeight );
+ _qt_textEdit->blockSignals( true );
+ _qt_textEdit->setText( fromUTF8( text ) );
+ _qt_textEdit->blockSignals( false );
}
-void YQMultiLineEdit::setText( const YCPString & text )
+void YQMultiLineEdit::setLabel( const string & label )
{
- _qt_textedit->blockSignals( true );
- _qt_textedit->setText( fromUTF8( text->value() ) );
- _qt_textedit->blockSignals( false );
-}
-
-
-YCPString YQMultiLineEdit::text()
-{
- return YCPString( toUTF8( _qt_textedit->text() ) );
-}
-
-
-void YQMultiLineEdit::setLabel( const YCPString & label )
-{
- if ( _qt_label )
- _qt_label->setText( fromUTF8( label->value() ) );
+ _qt_label->setText( fromUTF8( label ) );
+
+ if ( label.empty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YMultiLineEdit::setLabel( label );
}
-bool YQMultiLineEdit::setKeyboardFocus()
+void YQMultiLineEdit::setInputMaxLength( int newMaxLength )
{
- _qt_textedit->setFocus();
+ YMultiLineEdit::setInputMaxLength( newMaxLength );
- return true;
+ QString text = _qt_textEdit->text();
+
+ if ( (int) text.length() > inputMaxLength() )
+ {
+ text.truncate( inputMaxLength() );
+ _qt_textEdit->setText(text);
+ }
}
-int YQMultiLineEdit::visibleLines() const
+void YQMultiLineEdit::enforceMaxInputLength()
{
- return VISIBLE_LINES;
-}
+ if ( inputMaxLength() >= 0 && _qt_textEdit->length() > inputMaxLength() )
+ {
+ int index;
+ int para;
+ _qt_textEdit->getCursorPosition( ¶, &index);
-void YQMultiLineEdit::changed()
-{
+ QString text = _qt_textEdit->text();
- // if we reached the maximum number of characters which can be inserted
- if ( InputMaxLength >= 0 && InputMaxLength < _qt_textedit->length() ) {
- int index, para;
- _qt_textedit->getCursorPosition( ¶, &index);
-
- QString text = _qt_textedit->text();
-
int pos = 0; // current positon in text
int section =0; // section in text;
// iterate over the string
- while ( pos != (int)text.length()+1 ) {
+
+ while ( pos != (int) text.length()+1 )
+ {
// we reached the paragraph where the user entered
// a character
- if ( section == para ) {
+ if ( section == para )
+ {
// remove that character
text.remove( pos+index-1, 1 );
break;
}
-
+
// new paragraph begins
- if ( text[pos] == '\n' ) {
+ if ( text[pos] == '\n' )
section++;
- }
+
pos++;
}
-
- _qt_textedit->setText( text );
-
+
+ _qt_textEdit->setText( text );
+
// user removed a paragraph
- if ( index == 0 ) {
+ if ( index == 0 )
+ {
--para;
// the new index is the end of the previous paragraph
- index = _qt_textedit->paragraphLength(para) + 1;
+ index = _qt_textEdit->paragraphLength(para) + 1;
}
// adjust to new cursor position before the removed character
- _qt_textedit->setCursorPosition( para, index-1 );
+ _qt_textEdit->setCursorPosition( para, index-1 );
}
+}
+
+
+void YQMultiLineEdit::changed()
+{
+ enforceMaxInputLength();
if ( notify() )
YQUI::ui()->sendEvent( new YWidgetEvent( this, YEvent::ValueChanged ) );
}
-void YQMultiLineEdit::setInputMaxLength( const YCPInteger & numberOfChars)
+
+void YQMultiLineEdit::setEnabled( bool enabled )
{
- InputMaxLength = numberOfChars->asInteger()->value();
-
- QString text = _qt_textedit->text();
+ _qt_textEdit->setEnabled( enabled );
+ YWidget::setEnabled( enabled );
+}
- // truncate the text if appropriate
- if ( InputMaxLength < (int)text.length() ) {
- text.truncate( InputMaxLength );
- _qt_textedit->setText(text);
- }
+int YQMultiLineEdit::preferredWidth()
+{
+ return max( 30, sizeHint().width() );
+}
+
+
+int YQMultiLineEdit::preferredHeight()
+{
+ int hintHeight = defaultVisibleLines() * _qt_textEdit->fontMetrics().lineSpacing();
+ hintHeight += _qt_textEdit->frameWidth() * 2 + YQWidgetMargin * 2;
+
+ if ( _qt_label && _qt_label->isShown() )
+ hintHeight += _qt_label->sizeHint().height() + YQWidgetSpacing;
+
+ return max( 10, hintHeight );
}
+
+void YQMultiLineEdit::setSize( int newWidth, int newHeight )
+{
+ resize( newWidth, newHeight );
+}
+
+
+bool YQMultiLineEdit::setKeyboardFocus()
+{
+ _qt_textEdit->setFocus();
+
+ return true;
+}
+
+
#include "YQMultiLineEdit.moc"
Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiL…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h Tue Jul 3 16:49:18 2007
@@ -22,104 +22,118 @@
#include <qvbox.h>
#include <qlabel.h>
-#include <ycp/YCPString.h>
#include "YMultiLineEdit.h"
class QTextEdit;
+/**
+ * MultiLineEdit - an input area for multi-line text.
+ **/
class YQMultiLineEdit : public QVBox, public YMultiLineEdit
{
Q_OBJECT
public:
/**
- * Constructor
+ * Constructor.
**/
- YQMultiLineEdit( QWidget * parent,
- const YWidgetOpt & opt,
- const YCPString & label,
- const YCPString & initialText );
+ YQMultiLineEdit( YWidget * parent, const string & label );
/**
- * Inherited from YWidget: Sets the enabled state of the
- * widget. All new widgets are enabled per definition. Only
- * enabled widgets can take user input.
+ * Destructor.
**/
- void setEnabled( bool enabled );
+ virtual ~YQMultiLineEdit();
/**
- * Preferred width of the widget.
+ * Get the current value (the text entered by the user or set from the
+ * outside) of this MultiLineEdit.
*
- * Reimplemented from YWidget.
+ * Implemented from YMultiLineEdit.
**/
- virtual int preferredWidth();
+ virtual string value();
/**
- * Preferred height of the widget.
+ * Set the current value (the text entered by the user or set from the
+ * outside) of this MultiLineEdit.
*
- * Reimplemented from YWidget.
+ * Implemented from YMultiLineEdit.
**/
- virtual int preferredHeight();
+ virtual void setValue( const string & text );
/**
- * Set the new size of the widget.
+ * Set the label (the caption above the MultiLineEdit).
*
- * Reimplemented from YWidget.
+ * Reimplemented from YMultiLineEdit.
**/
- virtual void setSize( int newWidth, int newHeight );
-
+ virtual void setLabel( const string & label );
+
/**
- * Accept the keyboard focus.
+ * Set the maximum input length, i.e., the maximum number of characters the
+ * user can enter. -1 means no limit.
+ *
+ * Reimplemented from YMultiLineEdit.
**/
- bool setKeyboardFocus();
-
+ virtual void setInputMaxLength( int numberOfChars );
+
/**
- * Set the widget's label header.
+ * Set enabled/disabled state.
+ *
+ * Reimplemented from YWidget.
**/
- void setLabel( const YCPString & newLabel );
+ virtual void setEnabled( bool enabled );
/**
- * Set the edited text.
- * Inherited from YMultiLineEdit.
+ * Preferred width of the widget.
+ *
+ * Reimplemented from YWidget.
**/
- void setText( const YCPString & text );
+ virtual int preferredWidth();
/**
- * Get the edited text.
- * Inherited from YMultiLineEdit.
+ * Preferred height of the widget.
+ *
+ * Reimplemented from YWidget.
**/
- YCPString text();
+ virtual int preferredHeight();
/**
- * Get the number of lines visible by default
+ * Set the new size of the widget.
+ *
+ * Reimplemented from YWidget.
**/
- int visibleLines() const;
+ virtual void setSize( int newWidth, int newHeight );
/**
- * Specify the amount of characters which can be inserted.
- *
- * Reimplemented from YMulitLineEdit.
+ * Accept the keyboard focus.
**/
- void setInputMaxLength( const YCPInteger & numberOfChars );
+ virtual bool setKeyboardFocus();
protected slots:
+
/**
* Triggered when the text changes.
**/
void changed();
+ /**
+ * Enforce the maximum input length: If the text becomes too long, remove
+ * the just-entered character at the current cursor position.
+ *
+ * Note that this is a lot more user friendly than silently truncating at
+ * the end of the text: In the latter case, chances are that the user never
+ * gets to know that text was truncated. Removing the just-typed character
+ * OTOH is something he will notice very quickly.
+ **/
+ void enforceMaxInputLength();
+
protected:
QLabel * _qt_label;
- QTextEdit * _qt_textedit;
-
- // specifies how much characters can be inserted. -1 for unlimited input
- int InputMaxLength;
-
+ QTextEdit * _qt_textEdit;
};
Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiS…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc Tue Jul 3 16:49:18 2007
@@ -48,6 +48,9 @@
_qt_label = new QLabel( fromUTF8( label ), this );
_qt_label->setTextFormat( QLabel::PlainText );
+ if ( label.empty() )
+ _qt_label->hide();
+
_qt_listView = new QListView( this );
_qt_listView->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
_qt_listView->addColumn( "" ); // QListView doesn't have one single column by default!
@@ -75,6 +78,18 @@
YQMultiSelectionBox::setLabel( const string & label )
{
_qt_label->setText( fromUTF8( label ) );
+
+ if ( label.empty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YMultiSelectionBox::setLabel( label );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQUI.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQUI.h?r…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQUI.h (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQUI.h Tue Jul 3 16:49:18 2007
@@ -452,7 +452,6 @@
YWidget * createIntField ( YWidget * parent, YWidgetOpt & opt, const YCPString & label, int minValue, int maxValue, int initialValue);
YWidget * createLogView ( YWidget * parent, YWidgetOpt & opt, const YCPString & label, int visibleLines, int maxLines );
- YWidget * createMultiLineEdit ( YWidget * parent, YWidgetOpt & opt, const YCPString & label, const YCPString & text);
YWidget * createProgressBar ( YWidget * parent, YWidgetOpt & opt, const YCPString & label, const YCPInteger & maxProgress, const YCPInteger & currentProgress );
YWidget * createMenuButton ( YWidget * parent, YWidgetOpt & opt, const YCPString & label);
YWidget * createTable ( YWidget * parent, YWidgetOpt & opt, vector<string> header);
Modified: branches/tmp/sh/mod-ui/qt/src/YQUI_widgets.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQUI_wid…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQUI_widgets.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQUI_widgets.cc Tue Jul 3 16:49:18 2007
@@ -30,7 +30,6 @@
#include "YQIntField.h"
#include "YQLogView.h"
#include "YQMenuButton.h"
-#include "YQMultiLineEdit.h"
#include "YQMultiProgressMeter.h"
#include "YQPackageSelectorPlugin.h"
#include "YQPartitionSplitter.h"
@@ -110,15 +109,6 @@
}
-YWidget * YQUI::createMultiLineEdit( YWidget * parent,
- YWidgetOpt & opt,
- const YCPString & label,
- const YCPString & initialText )
-{
- return new YQMultiLineEdit( (QWidget *) ( parent->widgetRep() ), opt, label, initialText);
-}
-
-
YWidget * YQUI::createTree ( YWidget * parent,
YWidgetOpt & opt,
const YCPString & label )
Modified: branches/tmp/sh/mod-ui/qt/src/YQWidgetFactory.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQWidget…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQWidgetFactory.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQWidgetFactory.cc Tue Jul 3 16:49:18 2007
@@ -228,7 +228,10 @@
YQMultiLineEdit *
YQWidgetFactory::createMultiLineEdit( YWidget * parent, const string & label )
{
- return 0; // FIXME: TO DO
+ YQMultiLineEdit * multiLineEdit = new YQMultiLineEdit( parent, label );
+ YUI_CHECK_NEW( multiLineEdit );
+
+ return multiLineEdit;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39146 - in /branches/tmp/sh/mod-ui/core/libyui/src: YWidget.h YWidget_OptimizeChanges.h
by sh-sh-sh@svn.opensuse.org 03 Jul '07
by sh-sh-sh@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: sh-sh-sh
Date: Tue Jul 3 16:48:52 2007
New Revision: 39146
URL: http://svn.opensuse.org/viewcvs/yast?rev=39146&view=rev
Log:
moved out-of-place stuff out
Added:
branches/tmp/sh/mod-ui/core/libyui/src/YWidget_OptimizeChanges.h
Modified:
branches/tmp/sh/mod-ui/core/libyui/src/YWidget.h
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YWidget.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YWidget.h (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YWidget.h Tue Jul 3 16:48:52 2007
@@ -624,35 +624,28 @@
**/
void invalidate();
+ /**
+ * Disable copy constructor.
+ **/
+ YWidget( const YWidget & other );
+
+ /**
+ * Disable assignment operator.
+ **/
+ const YWidget & operator=( const YWidget & other );
private:
+ //
+ // Data Members
+ //
+
ImplPtr<YWidgetPrivate> priv;
static YPropertySet _propertySet;
-
-
- // FIXME: Get this stuff out of here - it is utterly out of place
- // FIXME: Get this stuff out of here - it is utterly out of place
- // FIXME: Get this stuff out of here - it is utterly out of place
-
-public:
- /**
- * Helper class that calls startMultipleChanges() in its constructor
- * and cares about the necessary call to doneMultipleChanges() when it goes
- * out of scope.
- **/
- class OptimizeChanges
- {
- public:
- OptimizeChanges( YWidget & w ) : yw(w) { yw.startMultipleChanges(); }
- ~OptimizeChanges() { yw.doneMultipleChanges(); }
- private:
- OptimizeChanges( const OptimizeChanges & ); // no copy
- void operator=( const OptimizeChanges & ); // no assign
- YWidget & yw;
- };
+
+#include "YWidget_OptimizeChanges.h"
};
Added: branches/tmp/sh/mod-ui/core/libyui/src/YWidget_OptimizeChanges.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YWidget_OptimizeChanges.h (added)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YWidget_OptimizeChanges.h Tue Jul 3 16:48:52 2007
@@ -0,0 +1,52 @@
+/*---------------------------------------------------------------------\
+| |
+| __ __ ____ _____ ____ |
+| \ \ / /_ _/ ___|_ _|___ \ |
+| \ V / _` \___ \ | | __) | |
+| | | (_| |___) || | / __/ |
+| |_|\__,_|____/ |_| |_____| |
+| |
+| core system |
+| (C) SuSE GmbH |
+\----------------------------------------------------------------------/
+
+ File: YWidget_OptimizeChanges.h
+
+ Author: Michael Andres <ma(a)suse.de>
+
+/-*/
+
+#ifndef YWidget_OptimizeChanges_h
+#define YWidget_OptimizeChanges_h
+
+
+// Moved out of YWidget.h because it's really utterly out of place there.
+
+#ifndef YWidget_h
+#error Do not include this file from anywhere outside YWidget.h!
+#endif
+
+// class YWidget
+// {
+
+public:
+ /**
+ * Helper class that calls startMultipleChanges() in its constructor
+ * and cares about the necessary call to doneMultipleChanges() when it goes
+ * out of scope.
+ **/
+ class OptimizeChanges
+ {
+ public:
+ OptimizeChanges( YWidget & w ) : yw(w) { yw.startMultipleChanges(); }
+ ~OptimizeChanges() { yw.doneMultipleChanges(); }
+ private:
+ OptimizeChanges( const OptimizeChanges & ); // no copy
+ void operator=( const OptimizeChanges & ); // no assign
+ YWidget & yw;
+ };
+
+// }; // class YWidget
+
+
+#endif // YWidget_OptimizeChanges_h
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39145 - /branches/tmp/sh/mod-ui/core/libyui/src/YInputField.h
by sh-sh-sh@svn.opensuse.org 03 Jul '07
by sh-sh-sh@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: sh-sh-sh
Date: Tue Jul 3 16:48:30 2007
New Revision: 39145
URL: http://svn.opensuse.org/viewcvs/yast?rev=39145&view=rev
Log:
coding style
Modified:
branches/tmp/sh/mod-ui/core/libyui/src/YInputField.h
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YInputField.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YInputField.h (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YInputField.h Tue Jul 3 16:48:30 2007
@@ -56,7 +56,7 @@
* Get the current value (the text entered by the user or set from the
* outside) of this input field.
*
- * Derived classes need to implement this.
+ * Derived classes are required to implement this.
**/
virtual string value() = 0;
@@ -64,7 +64,7 @@
* Set the current value (the text entered by the user or set from the
* outside) of this input field.
*
- * Derived classes need to implement this.
+ * Derived classes are required to implement this.
**/
virtual void setValue( const string & text ) = 0;
@@ -185,7 +185,6 @@
private:
-
/**
* Save the widget's user input to a macro recorder.
* Intentionally declared as "private" so all macro recording internals are
@@ -193,6 +192,7 @@
**/
virtual void saveUserInput( YMacroRecorder *macroRecorder );
+
ImplPtr<YInputFieldPrivate> priv;
};
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39144 - /branches/tmp/sh/mod-ui/core/libyui/src/YInputField.cc
by sh-sh-sh@svn.opensuse.org 03 Jul '07
by sh-sh-sh@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: sh-sh-sh
Date: Tue Jul 3 16:48:10 2007
New Revision: 39144
URL: http://svn.opensuse.org/viewcvs/yast?rev=39144&view=rev
Log:
coding style
Modified:
branches/tmp/sh/mod-ui/core/libyui/src/YInputField.cc
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YInputField.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YInputField.cc (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YInputField.cc Tue Jul 3 16:48:10 2007
@@ -17,9 +17,6 @@
/-*/
-#include <ycp/YCPSymbol.h>
-#include <ycp/YCPBoolean.h>
-#include <ycp/YCPInteger.h>
#define y2log_component "ui"
#include <ycp/y2log.h>
@@ -32,22 +29,18 @@
struct YInputFieldPrivate
{
- string label;
- bool passwordMode;
- bool shrinkable;
- string validChars;
- int inputMaxLength;
-
- /**
- * Constructor
- **/
-
YInputFieldPrivate( string label, bool passwordMode )
: label( label )
, passwordMode( passwordMode )
, shrinkable( false )
, inputMaxLength( -1 )
{}
+
+ string label;
+ bool passwordMode;
+ bool shrinkable;
+ string validChars;
+ int inputMaxLength;
};
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39143 - in /branches/tmp/sh/mod-ui/qt/src: YQComboBox.cc YQDate.cc YQDownloadProgress.cc YQInputField.cc YQIntField.cc YQLogView.cc YQProgressBar.cc YQSelectionBox.cc YQSlider.cc YQTime.cc YQTree.cc
by sh-sh-sh@svn.opensuse.org 03 Jul '07
by sh-sh-sh@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: sh-sh-sh
Date: Tue Jul 3 16:47:27 2007
New Revision: 39143
URL: http://svn.opensuse.org/viewcvs/yast?rev=39143&view=rev
Log:
honor empty labels
Modified:
branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc
branches/tmp/sh/mod-ui/qt/src/YQDate.cc
branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc
branches/tmp/sh/mod-ui/qt/src/YQInputField.cc
branches/tmp/sh/mod-ui/qt/src/YQIntField.cc
branches/tmp/sh/mod-ui/qt/src/YQLogView.cc
branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc
branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc
branches/tmp/sh/mod-ui/qt/src/YQSlider.cc
branches/tmp/sh/mod-ui/qt/src/YQTime.cc
branches/tmp/sh/mod-ui/qt/src/YQTree.cc
Modified: branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQComboB…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc Tue Jul 3 16:47:27 2007
@@ -48,7 +48,7 @@
_qt_label = new QLabel( fromUTF8( label ), this );
_qt_label->setTextFormat( QLabel::PlainText );
- if ( _qt_label->text().isEmpty() )
+ if ( label.empty() )
_qt_label->hide();
_qt_combo_box = new QComboBox( editable, this );
@@ -120,7 +120,7 @@
{
_qt_label->setText( fromUTF8( label ) );
- if ( _qt_label->text().isEmpty() )
+ if ( label.empty() )
{
if ( _qt_label->isVisible() )
_qt_label->hide();
Modified: branches/tmp/sh/mod-ui/qt/src/YQDate.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDate.c…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQDate.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQDate.cc Tue Jul 3 16:47:27 2007
@@ -40,7 +40,7 @@
_qt_label = new QLabel( fromUTF8(label->value()), this );
_qt_label->setTextFormat( QLabel::PlainText );
- if ( label->value() == "" )
+ if ( _qt_label->text().isEmpty() )
_qt_label->hide();
_qt_dateedit = new QDateEdit( this );
@@ -60,6 +60,18 @@
void YQDate::setLabel( const YCPString & label )
{
_qt_label->setText( fromUTF8(label->value() ) );
+
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YDate::setLabel( label );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDownlo…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc Tue Jul 3 16:47:27 2007
@@ -42,6 +42,9 @@
_qt_label = new QLabel( fromUTF8( label->value() ), this );
_qt_label->setTextFormat( QLabel::PlainText );
+ if ( _qt_label->text().isEmpty() )
+ _qt_label->hide();
+
_qt_progress = new QProgressBar( this );
_qt_progress->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
@@ -84,6 +87,18 @@
void YQDownloadProgress::setLabel( const YCPString & label )
{
_qt_label->setText( fromUTF8( label->value() ) );
+
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YDownloadProgress::setLabel( label );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQInputField.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQInputF…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQInputField.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQInputField.cc Tue Jul 3 16:47:27 2007
@@ -141,6 +141,18 @@
void YQInputField::setLabel( const string & label )
{
_qt_label->setText( fromUTF8(label ) );
+
+ if ( label.empty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YInputField::setLabel( label );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQIntField.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQIntFie…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQIntField.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQIntField.cc Tue Jul 3 16:47:27 2007
@@ -44,6 +44,9 @@
_qt_label->setTextFormat( QLabel::PlainText );
_qt_label->setAlignment( Qt::AlignLeft );
+ if ( _qt_label->text().isEmpty() )
+ _qt_label->hide();
+
_qt_spinbox = new QSpinBox( minValue, maxValue,
1, // step
this );
@@ -88,6 +91,17 @@
{
_qt_label->setText( fromUTF8( newLabel->value() ) ) ;
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YIntField::setLabel( newLabel );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQLogView.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQLogVie…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQLogView.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQLogView.cc Tue Jul 3 16:47:27 2007
@@ -46,9 +46,9 @@
_qt_label = new QLabel( fromUTF8( label->value() ), this );
_qt_label->setTextFormat( QLabel::PlainText );
- if ( label->value() == "" )
+ if ( _qt_label->text().isEmpty() )
_qt_label->hide();
-
+
_qt_text = new QMultiLineEdit( this );
_qt_text->setReadOnly( true );
_qt_text->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
@@ -97,6 +97,18 @@
void YQLogView::setLabel( const YCPString & label )
{
_qt_label->setText( fromUTF8( label->value() ) );
+
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YLogView::setLabel( label );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQProgre…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc Tue Jul 3 16:47:27 2007
@@ -92,6 +92,17 @@
void YQProgressBar::setLabel( const YCPString & text )
{
_qt_label->setText( fromUTF8(text->value() ) );
+
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSelect…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc Tue Jul 3 16:47:27 2007
@@ -53,7 +53,7 @@
_qt_label = new QLabel( fromUTF8( label ), this );
_qt_label->setTextFormat( QLabel::PlainText );
- if ( _qt_label->text().isEmpty() )
+ if ( label.empty() )
_qt_label->hide();
_qt_listBox = new QListBox( this );
@@ -90,7 +90,7 @@
_qt_label->setText( fromUTF8( label ) );
- if ( _qt_label->text().isEmpty() )
+ if ( label.empty() )
{
if ( _qt_label->isVisible() )
_qt_label->hide();
Modified: branches/tmp/sh/mod-ui/qt/src/YQSlider.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSlider…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQSlider.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQSlider.cc Tue Jul 3 16:47:27 2007
@@ -44,6 +44,9 @@
_qt_label->setTextFormat( QLabel::PlainText );
_qt_label->setAlignment( Qt::AlignRight );
+ if ( _qt_label->text().isEmpty() )
+ _qt_label->hide();
+
_hbox = new QHBox( this );
_hbox->setSpacing( YQWidgetSpacing );
@@ -104,6 +107,17 @@
{
_qt_label->setText( fromUTF8( newLabel->value() ) ) ;
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YSlider::setLabel( newLabel );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQTime.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTime.c…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQTime.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQTime.cc Tue Jul 3 16:47:27 2007
@@ -59,6 +59,18 @@
void YQTime::setLabel( const YCPString & label )
{
_qt_label->setText( fromUTF8(label->value() ) );
+
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YTime::setLabel( label );
}
Modified: branches/tmp/sh/mod-ui/qt/src/YQTree.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTree.c…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQTree.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQTree.cc Tue Jul 3 16:47:27 2007
@@ -53,6 +53,9 @@
_qt_label = new QLabel( fromUTF8( label->value() ), this );
_qt_label->setTextFormat( QLabel::PlainText );
+ if ( _qt_label->text().isEmpty() )
+ _qt_label->hide();
+
_listView = new QListView( this );
_listView->addColumn( "" );
_listView->header()->hide();
@@ -75,6 +78,18 @@
YQTree::setLabel( const YCPString & label )
{
_qt_label->setText( fromUTF8( label->value() ) );
+
+ if ( _qt_label->text().isEmpty() )
+ {
+ if ( _qt_label->isVisible() )
+ _qt_label->hide();
+ }
+ else
+ {
+ if ( _qt_label->isHidden() )
+ _qt_label->show();
+ }
+
YTree::setLabel( label );
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39142 - /branches/tmp/sh/mod-ui/core/libyui/doc/examples/MultiLineEdit3.ycp
by sh-sh-sh@svn.opensuse.org 03 Jul '07
by sh-sh-sh@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: sh-sh-sh
Date: Tue Jul 3 16:46:41 2007
New Revision: 39142
URL: http://svn.opensuse.org/viewcvs/yast?rev=39142&view=rev
Log:
style
Modified:
branches/tmp/sh/mod-ui/core/libyui/doc/examples/MultiLineEdit3.ycp
Modified: branches/tmp/sh/mod-ui/core/libyui/doc/examples/MultiLineEdit3.ycp
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/doc…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/doc/examples/MultiLineEdit3.ycp (original)
+++ branches/tmp/sh/mod-ui/core/libyui/doc/examples/MultiLineEdit3.ycp Tue Jul 3 16:46:41 2007
@@ -1,7 +1,7 @@
+// Build dialog with MuliLineEdit widget,
+// a character counter for the MuliLineEdit's contents as they are typed
+// and an OK button.
{
- // Build dialog with MuliLineEdit widget,
- // a character counter for the MuliLineEdit's contents as they are typed
- // and an OK button.
UI::OpenDialog(
`VBox(
`MultiLineEdit(`id(`problem),
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39141 - in /branches/SuSE-SLE-10-SP2-Branch/autoinstallation: package/autoyast2.changes src/modules/AutoinstScripts.ycp
by ug@svn.opensuse.org 03 Jul '07
by ug@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: ug
Date: Tue Jul 3 16:43:51 2007
New Revision: 39141
URL: http://svn.opensuse.org/viewcvs/yast?rev=39141&view=rev
Log:
execution of chroot scripts fixed (#205090)
Modified:
branches/SuSE-SLE-10-SP2-Branch/autoinstallation/package/autoyast2.changes
branches/SuSE-SLE-10-SP2-Branch/autoinstallation/src/modules/AutoinstScripts.ycp
Modified: branches/SuSE-SLE-10-SP2-Branch/autoinstallation/package/autoyast2.changes
URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP2-Branch/autoin…
==============================================================================
--- branches/SuSE-SLE-10-SP2-Branch/autoinstallation/package/autoyast2.changes (original)
+++ branches/SuSE-SLE-10-SP2-Branch/autoinstallation/package/autoyast2.changes Tue Jul 3 16:43:51 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue Jul 3 16:42:42 CEST 2007 - ug(a)suse.de
+
+- post SP1
+- execution of chroot scripts fixed (#205090)
+
+-------------------------------------------------------------------
Fri Apr 20 14:30:30 CEST 2007 - ug(a)suse.de
- fix for EVMS creation (#266313)
Modified: branches/SuSE-SLE-10-SP2-Branch/autoinstallation/src/modules/AutoinstScripts.ycp
URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP2-Branch/autoin…
==============================================================================
--- branches/SuSE-SLE-10-SP2-Branch/autoinstallation/src/modules/AutoinstScripts.ycp (original)
+++ branches/SuSE-SLE-10-SP2-Branch/autoinstallation/src/modules/AutoinstScripts.ycp Tue Jul 3 16:43:51 2007
@@ -419,11 +419,19 @@
}
else if (type == "chroot-scripts")
{
- tmpdirString = sformat("%1%2", AutoinstConfig::destdir, AutoinstConfig::scripts_dir);
- SCR::Execute (.target.mkdir, tmpdirString);
+ if( !special ) {
+ tmpdirString = sformat("%1%2", AutoinstConfig::destdir, AutoinstConfig::scripts_dir);
+ SCR::Execute (.target.mkdir, tmpdirString);
+
+ current_logdir = sformat("%1%2", AutoinstConfig::destdir, AutoinstConfig::logs_dir);
+ SCR::Execute (.target.mkdir, current_logdir);
+ } else {
+ tmpdirString = sformat("%1", AutoinstConfig::scripts_dir);
+ SCR::Execute (.target.mkdir, tmpdirString);
- current_logdir = sformat("%1%2", AutoinstConfig::destdir, AutoinstConfig::logs_dir);
- SCR::Execute (.target.mkdir, current_logdir);
+ current_logdir = sformat("%1", AutoinstConfig::logs_dir);
+ SCR::Execute (.target.mkdir, current_logdir);
+ }
}
else
{
@@ -479,8 +487,14 @@
{
//scriptPath = sformat("%1%2/%3", (special) ? "" : AutoinstConfig::destdir, AutoinstConfig::scripts_dir, scriptName);
- // write always to /mnt/....
- scriptPath = sformat("%1%2/%3",AutoinstConfig::destdir, AutoinstConfig::scripts_dir, scriptName);
+ map toks = URL::Parse(s["location"]:"");
+ if( toks["scheme"]:"" == "nfs" || !special ) {
+ scriptPath = sformat("%1%2/%3",AutoinstConfig::destdir, AutoinstConfig::scripts_dir, scriptName);
+ } else {
+ scriptPath = sformat("%1/%2",AutoinstConfig::scripts_dir, scriptName);
+ }
+
+
y2milestone("Writing chroot script into %1", scriptPath);
if (s["location"]:""!="")
{
@@ -491,6 +505,9 @@
} else {
SCR::Write(.target.string, scriptPath, s["source"]:"echo Empty script!");
}
+ if( special && toks["scheme"]:"" == "nfs" ) {
+ scriptPath = substring (scriptPath, 4); // cut off the /mnt for later execution
+ }
}
else
{
@@ -517,21 +534,25 @@
string executionString = "";
boolean showFeedback = s["feedback"]:false;
+
if (scriptInterpreter == "shell")
{
string debug = ( s["debug"]:true ? "-x" : "" );
executionString = sformat("/bin/sh %1 %2 2&> %3/%4.log ", debug, scriptPath, current_logdir, scriptName);
+ y2milestone("Script Execution command: %1", executionString );
SCR::Execute (.target.bash, executionString);
}
else if (scriptInterpreter == "perl")
{
string debug = ( s["debug"]:true ? "-w" : "" );
executionString = sformat("/usr/bin/perl %1 %2 2&> %3/%4.log ", debug, scriptPath, current_logdir, scriptName);
+ y2milestone("Script Execution command: %1", executionString );
SCR::Execute (.target.bash, executionString);
}
else if (scriptInterpreter == "python")
{
executionString = sformat("/usr/bin/python %1 2&> %2/%3.log ", scriptPath, current_logdir, scriptName );
+ y2milestone("Script Execution command: %1", executionString );
SCR::Execute (.target.bash, executionString);
}
else
@@ -545,7 +566,6 @@
if( size(feedback) > 0 ) {
Popup::LongText(type, `RichText(`opt(`plainText), feedback), 50, 20 );
}
- y2milestone("Script Execution command: %1", executionString );
}
});
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39140 - in /trunk/theme: openSUSE/icons/22x22/apps/ openSUSE/icons/32x32/apps/ openSUSE/icons/48x48/apps/ package/
by locilka@svn.opensuse.org 03 Jul '07
by locilka@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: locilka
Date: Tue Jul 3 16:27:01 2007
New Revision: 39140
URL: http://svn.opensuse.org/viewcvs/yast?rev=39140&view=rev
Log:
Initially NLD-theme was used for yast2-theme-openSUSE
Modified:
trunk/theme/openSUSE/icons/22x22/apps/yast-addon.png
trunk/theme/openSUSE/icons/22x22/apps/yast-autoyast.png
trunk/theme/openSUSE/icons/22x22/apps/yast-backup.png
trunk/theme/openSUSE/icons/22x22/apps/yast-bluetooth.png
trunk/theme/openSUSE/icons/22x22/apps/yast-bootfloppy.png
trunk/theme/openSUSE/icons/22x22/apps/yast-bootloader.png
trunk/theme/openSUSE/icons/22x22/apps/yast-bootmsg.png
trunk/theme/openSUSE/icons/22x22/apps/yast-ca_mgm.png
trunk/theme/openSUSE/icons/22x22/apps/yast-cd-creator.png
trunk/theme/openSUSE/icons/22x22/apps/yast-cd_update.png
trunk/theme/openSUSE/icons/22x22/apps/yast-checkmedia.png
trunk/theme/openSUSE/icons/22x22/apps/yast-common_cert.png
trunk/theme/openSUSE/icons/22x22/apps/yast-controller.png
trunk/theme/openSUSE/icons/22x22/apps/yast-dasd.png
trunk/theme/openSUSE/icons/22x22/apps/yast-dhcp-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-disk.png
trunk/theme/openSUSE/icons/22x22/apps/yast-dns-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-dns.png
trunk/theme/openSUSE/icons/22x22/apps/yast-dsl.png
trunk/theme/openSUSE/icons/22x22/apps/yast-firewall.png
trunk/theme/openSUSE/icons/22x22/apps/yast-groups.png
trunk/theme/openSUSE/icons/22x22/apps/yast-heartbeat.png
trunk/theme/openSUSE/icons/22x22/apps/yast-http-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-hwinfo.png
trunk/theme/openSUSE/icons/22x22/apps/yast-inetd.png
trunk/theme/openSUSE/icons/22x22/apps/yast-inst-mode.png
trunk/theme/openSUSE/icons/22x22/apps/yast-instserver.png
trunk/theme/openSUSE/icons/22x22/apps/yast-irda.png
trunk/theme/openSUSE/icons/22x22/apps/yast-iscsi-client.png
trunk/theme/openSUSE/icons/22x22/apps/yast-iscsi-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-isdn.png
trunk/theme/openSUSE/icons/22x22/apps/yast-joystick.png
trunk/theme/openSUSE/icons/22x22/apps/yast-kerberos.png
trunk/theme/openSUSE/icons/22x22/apps/yast-keyboard.png
trunk/theme/openSUSE/icons/22x22/apps/yast-lan.png
trunk/theme/openSUSE/icons/22x22/apps/yast-ldap-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-ldap.png
trunk/theme/openSUSE/icons/22x22/apps/yast-license.png
trunk/theme/openSUSE/icons/22x22/apps/yast-lvm_config.png
trunk/theme/openSUSE/icons/22x22/apps/yast-mail-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-mail.png
trunk/theme/openSUSE/icons/22x22/apps/yast-messages.png
trunk/theme/openSUSE/icons/22x22/apps/yast-modem.png
trunk/theme/openSUSE/icons/22x22/apps/yast-mouse.png
trunk/theme/openSUSE/icons/22x22/apps/yast-network.png
trunk/theme/openSUSE/icons/22x22/apps/yast-nfs.png
trunk/theme/openSUSE/icons/22x22/apps/yast-nfs_server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-nis.png
trunk/theme/openSUSE/icons/22x22/apps/yast-nis_server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-ntp-client.png
trunk/theme/openSUSE/icons/22x22/apps/yast-online_update.png
trunk/theme/openSUSE/icons/22x22/apps/yast-partitioning.png
trunk/theme/openSUSE/icons/22x22/apps/yast-pci_id.png
trunk/theme/openSUSE/icons/22x22/apps/yast-power-management.png
trunk/theme/openSUSE/icons/22x22/apps/yast-powertweak.png
trunk/theme/openSUSE/icons/22x22/apps/yast-printer.png
trunk/theme/openSUSE/icons/22x22/apps/yast-profile-manager.png
trunk/theme/openSUSE/icons/22x22/apps/yast-proxy.png
trunk/theme/openSUSE/icons/22x22/apps/yast-release-notes.png
trunk/theme/openSUSE/icons/22x22/apps/yast-remote.png
trunk/theme/openSUSE/icons/22x22/apps/yast-restore.png
trunk/theme/openSUSE/icons/22x22/apps/yast-routing.png
trunk/theme/openSUSE/icons/22x22/apps/yast-runlevel.png
trunk/theme/openSUSE/icons/22x22/apps/yast-samba-client.png
trunk/theme/openSUSE/icons/22x22/apps/yast-samba-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-scanner.png
trunk/theme/openSUSE/icons/22x22/apps/yast-security.png
trunk/theme/openSUSE/icons/22x22/apps/yast-slp-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-software.png
trunk/theme/openSUSE/icons/22x22/apps/yast-sound.png
trunk/theme/openSUSE/icons/22x22/apps/yast-support.png
trunk/theme/openSUSE/icons/22x22/apps/yast-sw_single.png
trunk/theme/openSUSE/icons/22x22/apps/yast-sw_source.png
trunk/theme/openSUSE/icons/22x22/apps/yast-sysconfig.png
trunk/theme/openSUSE/icons/22x22/apps/yast-tftp-server.png
trunk/theme/openSUSE/icons/22x22/apps/yast-timezone.png
trunk/theme/openSUSE/icons/22x22/apps/yast-tv.png
trunk/theme/openSUSE/icons/22x22/apps/yast-update.png
trunk/theme/openSUSE/icons/22x22/apps/yast-users.png
trunk/theme/openSUSE/icons/22x22/apps/yast-vendor.png
trunk/theme/openSUSE/icons/22x22/apps/yast-wol.png
trunk/theme/openSUSE/icons/22x22/apps/yast-x11.png
trunk/theme/openSUSE/icons/22x22/apps/yast-yast-language.png
trunk/theme/openSUSE/icons/22x22/apps/yast-zfcp.png
trunk/theme/openSUSE/icons/32x32/apps/msg_error.png
trunk/theme/openSUSE/icons/32x32/apps/msg_info.png
trunk/theme/openSUSE/icons/32x32/apps/msg_warning.png
trunk/theme/openSUSE/icons/32x32/apps/yast-addon.png
trunk/theme/openSUSE/icons/32x32/apps/yast-answering_machine.png
trunk/theme/openSUSE/icons/32x32/apps/yast-autoyast.png
trunk/theme/openSUSE/icons/32x32/apps/yast-backup.png
trunk/theme/openSUSE/icons/32x32/apps/yast-bluetooth.png
trunk/theme/openSUSE/icons/32x32/apps/yast-bootfloppy.png
trunk/theme/openSUSE/icons/32x32/apps/yast-bootloader.png
trunk/theme/openSUSE/icons/32x32/apps/yast-bootmsg.png
trunk/theme/openSUSE/icons/32x32/apps/yast-ca_mgm.png
trunk/theme/openSUSE/icons/32x32/apps/yast-cd-creator.png
trunk/theme/openSUSE/icons/32x32/apps/yast-cd_update.png
trunk/theme/openSUSE/icons/32x32/apps/yast-cdrom.png
trunk/theme/openSUSE/icons/32x32/apps/yast-checkmedia.png
trunk/theme/openSUSE/icons/32x32/apps/yast-common_cert.png
trunk/theme/openSUSE/icons/32x32/apps/yast-controller.png
trunk/theme/openSUSE/icons/32x32/apps/yast-dasd.png
trunk/theme/openSUSE/icons/32x32/apps/yast-dhcp-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-dirinstall.png
trunk/theme/openSUSE/icons/32x32/apps/yast-disk.png
trunk/theme/openSUSE/icons/32x32/apps/yast-dns-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-dns.png
trunk/theme/openSUSE/icons/32x32/apps/yast-dsl.png
trunk/theme/openSUSE/icons/32x32/apps/yast-fax.png
trunk/theme/openSUSE/icons/32x32/apps/yast-firewall.png
trunk/theme/openSUSE/icons/32x32/apps/yast-groups.png
trunk/theme/openSUSE/icons/32x32/apps/yast-hardware.png
trunk/theme/openSUSE/icons/32x32/apps/yast-heartbeat.png
trunk/theme/openSUSE/icons/32x32/apps/yast-host.png
trunk/theme/openSUSE/icons/32x32/apps/yast-http-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-hwinfo.png
trunk/theme/openSUSE/icons/32x32/apps/yast-idedma.png
trunk/theme/openSUSE/icons/32x32/apps/yast-inetd.png
trunk/theme/openSUSE/icons/32x32/apps/yast-instserver.png
trunk/theme/openSUSE/icons/32x32/apps/yast-irda.png
trunk/theme/openSUSE/icons/32x32/apps/yast-iscsi-client.png
trunk/theme/openSUSE/icons/32x32/apps/yast-iscsi-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-isdn.png
trunk/theme/openSUSE/icons/32x32/apps/yast-joystick.png
trunk/theme/openSUSE/icons/32x32/apps/yast-kerberos.png
trunk/theme/openSUSE/icons/32x32/apps/yast-keyboard.png
trunk/theme/openSUSE/icons/32x32/apps/yast-lan.png
trunk/theme/openSUSE/icons/32x32/apps/yast-ldap-browser.png
trunk/theme/openSUSE/icons/32x32/apps/yast-ldap-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-ldap.png
trunk/theme/openSUSE/icons/32x32/apps/yast-license.png
trunk/theme/openSUSE/icons/32x32/apps/yast-lvm_config.png
trunk/theme/openSUSE/icons/32x32/apps/yast-mail-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-mail.png
trunk/theme/openSUSE/icons/32x32/apps/yast-messages.png
trunk/theme/openSUSE/icons/32x32/apps/yast-misc.png
trunk/theme/openSUSE/icons/32x32/apps/yast-modem.png
trunk/theme/openSUSE/icons/32x32/apps/yast-mouse.png
trunk/theme/openSUSE/icons/32x32/apps/yast-network.png
trunk/theme/openSUSE/icons/32x32/apps/yast-network_devices.png
trunk/theme/openSUSE/icons/32x32/apps/yast-network_services.png
trunk/theme/openSUSE/icons/32x32/apps/yast-nfs.png
trunk/theme/openSUSE/icons/32x32/apps/yast-nfs_server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-nis.png
trunk/theme/openSUSE/icons/32x32/apps/yast-nis_server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-ntp-client.png
trunk/theme/openSUSE/icons/32x32/apps/yast-online_update.png
trunk/theme/openSUSE/icons/32x32/apps/yast-pci_id.png
trunk/theme/openSUSE/icons/32x32/apps/yast-power-management.png
trunk/theme/openSUSE/icons/32x32/apps/yast-powertweak.png
trunk/theme/openSUSE/icons/32x32/apps/yast-printer.png
trunk/theme/openSUSE/icons/32x32/apps/yast-product-registration.png
trunk/theme/openSUSE/icons/32x32/apps/yast-profile-manager.png
trunk/theme/openSUSE/icons/32x32/apps/yast-proxy.png
trunk/theme/openSUSE/icons/32x32/apps/yast-release-notes.png
trunk/theme/openSUSE/icons/32x32/apps/yast-remote.png
trunk/theme/openSUSE/icons/32x32/apps/yast-restore.png
trunk/theme/openSUSE/icons/32x32/apps/yast-routing.png
trunk/theme/openSUSE/icons/32x32/apps/yast-runlevel.png
trunk/theme/openSUSE/icons/32x32/apps/yast-samba-client.png
trunk/theme/openSUSE/icons/32x32/apps/yast-samba-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-scanner.png
trunk/theme/openSUSE/icons/32x32/apps/yast-security.png
trunk/theme/openSUSE/icons/32x32/apps/yast-slp-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-software.png
trunk/theme/openSUSE/icons/32x32/apps/yast-sound.png
trunk/theme/openSUSE/icons/32x32/apps/yast-support.png
trunk/theme/openSUSE/icons/32x32/apps/yast-sw_single.png
trunk/theme/openSUSE/icons/32x32/apps/yast-sw_source.png
trunk/theme/openSUSE/icons/32x32/apps/yast-sysconfig.png
trunk/theme/openSUSE/icons/32x32/apps/yast-system.png
trunk/theme/openSUSE/icons/32x32/apps/yast-tftp-server.png
trunk/theme/openSUSE/icons/32x32/apps/yast-timezone.png
trunk/theme/openSUSE/icons/32x32/apps/yast-tv.png
trunk/theme/openSUSE/icons/32x32/apps/yast-uml.png
trunk/theme/openSUSE/icons/32x32/apps/yast-update.png
trunk/theme/openSUSE/icons/32x32/apps/yast-users.png
trunk/theme/openSUSE/icons/32x32/apps/yast-vendor.png
trunk/theme/openSUSE/icons/32x32/apps/yast-wol.png
trunk/theme/openSUSE/icons/32x32/apps/yast-x11.png
trunk/theme/openSUSE/icons/32x32/apps/yast-yast-language.png
trunk/theme/openSUSE/icons/32x32/apps/yast-zfcp.png
trunk/theme/openSUSE/icons/48x48/apps/yast-addon.png
trunk/theme/openSUSE/icons/48x48/apps/yast-answering_machine.png
trunk/theme/openSUSE/icons/48x48/apps/yast-autoyast.png
trunk/theme/openSUSE/icons/48x48/apps/yast-backup.png
trunk/theme/openSUSE/icons/48x48/apps/yast-bluetooth.png
trunk/theme/openSUSE/icons/48x48/apps/yast-bootfloppy.png
trunk/theme/openSUSE/icons/48x48/apps/yast-bootloader.png
trunk/theme/openSUSE/icons/48x48/apps/yast-bootmsg.png
trunk/theme/openSUSE/icons/48x48/apps/yast-ca_mgm.png
trunk/theme/openSUSE/icons/48x48/apps/yast-cd-creator.png
trunk/theme/openSUSE/icons/48x48/apps/yast-cd_update.png
trunk/theme/openSUSE/icons/48x48/apps/yast-cdrom.png
trunk/theme/openSUSE/icons/48x48/apps/yast-checkmedia.png
trunk/theme/openSUSE/icons/48x48/apps/yast-common_cert.png
trunk/theme/openSUSE/icons/48x48/apps/yast-controller.png
trunk/theme/openSUSE/icons/48x48/apps/yast-dasd.png
trunk/theme/openSUSE/icons/48x48/apps/yast-dhcp-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-dirinstall.png
trunk/theme/openSUSE/icons/48x48/apps/yast-disk.png
trunk/theme/openSUSE/icons/48x48/apps/yast-dns-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-dns.png
trunk/theme/openSUSE/icons/48x48/apps/yast-dsl.png
trunk/theme/openSUSE/icons/48x48/apps/yast-fax.png
trunk/theme/openSUSE/icons/48x48/apps/yast-firewall.png
trunk/theme/openSUSE/icons/48x48/apps/yast-groups.png
trunk/theme/openSUSE/icons/48x48/apps/yast-hardware.png
trunk/theme/openSUSE/icons/48x48/apps/yast-heartbeat.png
trunk/theme/openSUSE/icons/48x48/apps/yast-host.png
trunk/theme/openSUSE/icons/48x48/apps/yast-http-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-hwinfo.png
trunk/theme/openSUSE/icons/48x48/apps/yast-idedma.png
trunk/theme/openSUSE/icons/48x48/apps/yast-inetd.png
trunk/theme/openSUSE/icons/48x48/apps/yast-instserver.png
trunk/theme/openSUSE/icons/48x48/apps/yast-irda.png
trunk/theme/openSUSE/icons/48x48/apps/yast-iscsi-client.png
trunk/theme/openSUSE/icons/48x48/apps/yast-iscsi-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-isdn.png
trunk/theme/openSUSE/icons/48x48/apps/yast-joystick.png
trunk/theme/openSUSE/icons/48x48/apps/yast-kerberos.png
trunk/theme/openSUSE/icons/48x48/apps/yast-keyboard.png
trunk/theme/openSUSE/icons/48x48/apps/yast-lan.png
trunk/theme/openSUSE/icons/48x48/apps/yast-ldap-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-ldap.png
trunk/theme/openSUSE/icons/48x48/apps/yast-license.png
trunk/theme/openSUSE/icons/48x48/apps/yast-lvm_config.png
trunk/theme/openSUSE/icons/48x48/apps/yast-mail-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-mail.png
trunk/theme/openSUSE/icons/48x48/apps/yast-messages.png
trunk/theme/openSUSE/icons/48x48/apps/yast-misc.png
trunk/theme/openSUSE/icons/48x48/apps/yast-modem.png
trunk/theme/openSUSE/icons/48x48/apps/yast-mouse.png
trunk/theme/openSUSE/icons/48x48/apps/yast-network.png
trunk/theme/openSUSE/icons/48x48/apps/yast-network_devices.png
trunk/theme/openSUSE/icons/48x48/apps/yast-network_services.png
trunk/theme/openSUSE/icons/48x48/apps/yast-nfs.png
trunk/theme/openSUSE/icons/48x48/apps/yast-nfs_server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-nis.png
trunk/theme/openSUSE/icons/48x48/apps/yast-nis_server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-ntp-client.png
trunk/theme/openSUSE/icons/48x48/apps/yast-online_update.png
trunk/theme/openSUSE/icons/48x48/apps/yast-pci_id.png
trunk/theme/openSUSE/icons/48x48/apps/yast-power-management.png
trunk/theme/openSUSE/icons/48x48/apps/yast-powertweak.png
trunk/theme/openSUSE/icons/48x48/apps/yast-printer.png
trunk/theme/openSUSE/icons/48x48/apps/yast-profile-manager.png
trunk/theme/openSUSE/icons/48x48/apps/yast-proxy.png
trunk/theme/openSUSE/icons/48x48/apps/yast-release-notes.png
trunk/theme/openSUSE/icons/48x48/apps/yast-remote.png
trunk/theme/openSUSE/icons/48x48/apps/yast-restore.png
trunk/theme/openSUSE/icons/48x48/apps/yast-routing.png
trunk/theme/openSUSE/icons/48x48/apps/yast-runlevel.png
trunk/theme/openSUSE/icons/48x48/apps/yast-samba-client.png
trunk/theme/openSUSE/icons/48x48/apps/yast-samba-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-scanner.png
trunk/theme/openSUSE/icons/48x48/apps/yast-security.png
trunk/theme/openSUSE/icons/48x48/apps/yast-slp-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-software.png
trunk/theme/openSUSE/icons/48x48/apps/yast-sound.png
trunk/theme/openSUSE/icons/48x48/apps/yast-support.png
trunk/theme/openSUSE/icons/48x48/apps/yast-sw_single.png
trunk/theme/openSUSE/icons/48x48/apps/yast-sw_source.png
trunk/theme/openSUSE/icons/48x48/apps/yast-sysconfig.png
trunk/theme/openSUSE/icons/48x48/apps/yast-system.png
trunk/theme/openSUSE/icons/48x48/apps/yast-tftp-server.png
trunk/theme/openSUSE/icons/48x48/apps/yast-timezone.png
trunk/theme/openSUSE/icons/48x48/apps/yast-tv.png
trunk/theme/openSUSE/icons/48x48/apps/yast-uml.png
trunk/theme/openSUSE/icons/48x48/apps/yast-update.png
trunk/theme/openSUSE/icons/48x48/apps/yast-users.png
trunk/theme/openSUSE/icons/48x48/apps/yast-vendor.png
trunk/theme/openSUSE/icons/48x48/apps/yast-wol.png
trunk/theme/openSUSE/icons/48x48/apps/yast-x11.png
trunk/theme/openSUSE/icons/48x48/apps/yast-yast-language.png
trunk/theme/openSUSE/icons/48x48/apps/yast-zfcp.png
trunk/theme/package/yast2-theme.changes
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-addon.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-autoyast.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-backup.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-bluetooth.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-bootfloppy.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-bootloader.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-bootmsg.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-ca_mgm.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-cd-creator.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-cd_update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-checkmedia.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-common_cert.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-controller.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-dasd.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-dhcp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-disk.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-dns-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-dns.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-dsl.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-firewall.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-groups.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-heartbeat.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-http-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-hwinfo.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-inetd.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-inst-mode.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-instserver.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-irda.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-iscsi-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-iscsi-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-isdn.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-joystick.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-kerberos.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-keyboard.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-lan.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-ldap-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-ldap.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-license.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-lvm_config.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-mail-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-mail.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-messages.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-modem.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-mouse.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-network.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-nfs.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-nfs_server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-nis.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-nis_server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-ntp-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-online_update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-partitioning.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-pci_id.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-power-management.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-powertweak.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-printer.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-profile-manager.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-proxy.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-release-notes.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-remote.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-restore.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-routing.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-runlevel.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-samba-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-samba-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-scanner.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-security.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-slp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-software.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-sound.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-support.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-sw_single.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-sw_source.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-sysconfig.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-tftp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-timezone.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-tv.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-users.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-vendor.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-wol.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-x11.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-yast-language.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/22x22/apps/yast-zfcp.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/msg_error.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/msg_info.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/msg_warning.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-addon.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-answering_machine.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-autoyast.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-backup.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-bluetooth.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-bootfloppy.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-bootloader.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-bootmsg.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-ca_mgm.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-cd-creator.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-cd_update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-cdrom.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-checkmedia.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-common_cert.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-controller.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-dasd.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-dhcp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-dirinstall.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-disk.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-dns-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-dns.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-dsl.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-fax.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-firewall.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-groups.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-hardware.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-heartbeat.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-host.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-http-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-hwinfo.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-idedma.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-inetd.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-instserver.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-irda.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-iscsi-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-iscsi-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-isdn.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-joystick.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-kerberos.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-keyboard.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-lan.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-ldap-browser.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-ldap-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-ldap.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-license.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-lvm_config.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-mail-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-mail.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-messages.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-misc.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-modem.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-mouse.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-network.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-network_devices.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-network_services.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-nfs.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-nfs_server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-nis.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-nis_server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-ntp-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-online_update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-pci_id.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-power-management.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-powertweak.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-printer.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-product-registration.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-profile-manager.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-proxy.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-release-notes.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-remote.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-restore.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-routing.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-runlevel.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-samba-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-samba-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-scanner.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-security.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-slp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-software.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-sound.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-support.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-sw_single.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-sw_source.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-sysconfig.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-system.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-tftp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-timezone.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-tv.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-uml.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-users.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-vendor.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-wol.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-x11.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-yast-language.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/32x32/apps/yast-zfcp.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-addon.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-answering_machine.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-autoyast.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-backup.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-bluetooth.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-bootfloppy.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-bootloader.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-bootmsg.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-ca_mgm.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-cd-creator.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-cd_update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-cdrom.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-checkmedia.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-common_cert.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-controller.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-dasd.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-dhcp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-dirinstall.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-disk.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-dns-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-dns.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-dsl.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-fax.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-firewall.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-groups.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-hardware.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-heartbeat.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-host.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-http-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-hwinfo.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-idedma.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-inetd.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-instserver.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-irda.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-iscsi-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-iscsi-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-isdn.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-joystick.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-kerberos.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-keyboard.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-lan.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-ldap-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-ldap.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-license.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-lvm_config.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-mail-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-mail.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-messages.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-misc.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-modem.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-mouse.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-network.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-network_devices.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-network_services.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-nfs.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-nfs_server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-nis.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-nis_server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-ntp-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-online_update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-pci_id.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-power-management.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-powertweak.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-printer.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-profile-manager.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-proxy.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-release-notes.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-remote.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-restore.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-routing.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-runlevel.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-samba-client.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-samba-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-scanner.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-security.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-slp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-software.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-sound.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-support.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-sw_single.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-sw_source.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-sysconfig.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-system.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-tftp-server.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-timezone.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-tv.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-uml.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-update.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-users.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-vendor.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-wol.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-x11.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-yast-language.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/openSUSE/icons/48x48/apps/yast-zfcp.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/48x48/apps/…
==============================================================================
Binary files - no diff available.
Modified: trunk/theme/package/yast2-theme.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/package/yast2-theme.change…
==============================================================================
--- trunk/theme/package/yast2-theme.changes (original)
+++ trunk/theme/package/yast2-theme.changes Tue Jul 3 16:27:01 2007
@@ -4,6 +4,7 @@
- Created identical copy of yast2-theme-openSUSE under the name
yast2-theme-openSUSE-Crystal (FATE #301304). The old theme will
use Tango and the new one Crystal iconsets.
+- Initially NLD-theme was used for yast2-theme-openSUSE.
-------------------------------------------------------------------
Wed Apr 18 16:46:47 CEST 2007 - juhliarik(a)suse.cz
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r39139 - in /trunk/theme: ./ openSUSE-Crystal/ openSUSE-Crystal/control-center/ openSUSE-Crystal/desktops/ openSUSE-Crystal/icons/ openSUSE-Crystal/icons/22x22/ openSUSE-Crystal/icons/22x22/apps/ o...
by locilka@svn.opensuse.org 03 Jul '07
by locilka@svn.opensuse.org 03 Jul '07
03 Jul '07
Author: locilka
Date: Tue Jul 3 16:05:48 2007
New Revision: 39139
URL: http://svn.opensuse.org/viewcvs/yast?rev=39139&view=rev
Log:
- Created identical copy of yast2-theme-openSUSE under the name
yast2-theme-openSUSE-Crystal (FATE #301304). The old theme will
use Tango and the new one Crystal iconsets.
Added:
trunk/theme/openSUSE-Crystal/
- copied from r39103, trunk/theme/openSUSE/
Modified:
trunk/theme/openSUSE-Crystal/Makefile.am
trunk/theme/openSUSE-Crystal/control-center/Makefile.am
trunk/theme/openSUSE-Crystal/desktops/Makefile.am
trunk/theme/openSUSE-Crystal/icons/22x22/Makefile.am
trunk/theme/openSUSE-Crystal/icons/22x22/apps/Makefile.am
trunk/theme/openSUSE-Crystal/icons/32x32/Makefile.am
trunk/theme/openSUSE-Crystal/icons/32x32/apps/Makefile.am
trunk/theme/openSUSE-Crystal/icons/48x48/apps/Makefile.am
trunk/theme/openSUSE-Crystal/icons/Makefile.am
trunk/theme/openSUSE-Crystal/testpage/Makefile.am
trunk/theme/openSUSE-Crystal/wallpapers/Makefile.am
trunk/theme/openSUSE-Crystal/wizard/Makefile.am
trunk/theme/package/yast2-theme.changes
trunk/theme/yast2-theme.spec.in
Modified: trunk/theme/openSUSE-Crystal/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/Makefile.…
==============================================================================
--- trunk/theme/openSUSE-Crystal/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,10 +1,10 @@
#
-# Makefile.am for theme/openSUSE
+# Makefile.am for theme/openSUSE-Crystal
#
SUBDIRS = wizard control-center icons testpage wallpapers desktops
-themedir = @themedir@/openSUSE
+themedir = @themedir@/openSUSE-Crystal
theme_DATA = $(wildcard *.png )
Modified: trunk/theme/openSUSE-Crystal/control-center/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/control-c…
==============================================================================
--- trunk/theme/openSUSE-Crystal/control-center/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/control-center/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE/control-center
+# Makefile.am for theme/openSUSE-Crystal/control-center
#
-imgdir = @themedir@/openSUSE/control-center
+imgdir = @themedir@/openSUSE-Crystal/control-center
img_DATA = $(wildcard *.png )
Modified: trunk/theme/openSUSE-Crystal/desktops/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/desktops/…
==============================================================================
--- trunk/theme/openSUSE-Crystal/desktops/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/desktops/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE
+# Makefile.am for theme/openSUSE-Crystal/desktop
#
-testpagedir = @themedir@/openSUSE/desktops
+testpagedir = @themedir@/openSUSE-Crystal/desktops
testpage_DATA = \
yast-kde.png \
Modified: trunk/theme/openSUSE-Crystal/icons/22x22/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/22x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/22x22/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/icons/22x22/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,5 +1,5 @@
#
-# Makefile.am for theme/openSUSE/icons/22x22
+# Makefile.am for theme/openSUSE-Crystal/icons/22x22
#
SUBDIRS = apps
Modified: trunk/theme/openSUSE-Crystal/icons/22x22/apps/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/22x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/22x22/apps/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/icons/22x22/apps/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE/icons/22x22/apps
+# Makefile.am for theme/openSUSE-Crystal/icons/22x22/apps
#
-icondir = @themedir@/openSUSE/icons/22x22/apps
+icondir = @themedir@/openSUSE-Crystal/icons/22x22/apps
icon_DATA = $(wildcard *.png )
Modified: trunk/theme/openSUSE-Crystal/icons/32x32/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/32x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/32x32/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/icons/32x32/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,5 +1,5 @@
#
-# Makefile.am for theme/openSUSE/icons/32x32
+# Makefile.am for theme/openSUSE-Crystal/icons/32x32
#
SUBDIRS = apps
Modified: trunk/theme/openSUSE-Crystal/icons/32x32/apps/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/32x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/32x32/apps/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/icons/32x32/apps/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE/icons/32x32/apps
+# Makefile.am for theme/openSUSE-Crystal/icons/32x32/apps
#
-icondir = @themedir@/openSUSE/icons/32x32/apps
+icondir = @themedir@/openSUSE-Crystal/icons/32x32/apps
icon_DATA = $(wildcard *.png )
Modified: trunk/theme/openSUSE-Crystal/icons/48x48/apps/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/48x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/48x48/apps/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/icons/48x48/apps/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE/icons/48x48/apps
+# Makefile.am for theme/openSUSE-Crystal/icons/48x48/apps
#
-icondir = @themedir@/openSUSE/icons/48x48/apps
+icondir = @themedir@/openSUSE-Crystal/icons/48x48/apps
icon_DATA = $(wildcard *.png )
Modified: trunk/theme/openSUSE-Crystal/icons/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/Mak…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/icons/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,5 +1,5 @@
#
-# Makefile.am for theme/openSUSE/icons
+# Makefile.am for theme/openSUSE-Crystal/icons
#
SUBDIRS = 48x48 32x32 22x22
Modified: trunk/theme/openSUSE-Crystal/testpage/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/testpage/…
==============================================================================
--- trunk/theme/openSUSE-Crystal/testpage/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/testpage/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE
+# Makefile.am for theme/openSUSE-Crystal
#
-testpagedir = @themedir@/openSUSE/testpage
+testpagedir = @themedir@/openSUSE-Crystal/testpage
testpage_DATA = \
logo.eps \
Modified: trunk/theme/openSUSE-Crystal/wallpapers/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/wallpaper…
==============================================================================
--- trunk/theme/openSUSE-Crystal/wallpapers/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/wallpapers/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE/wallpapers
+# Makefile.am for theme/openSUSE-Crystal/wallpapers
#
-wallpapersdir = @themedir@/openSUSE/wallpapers
+wallpapersdir = @themedir@/openSUSE-Crystal/wallpapers
wallpapers_DATA = $(wildcard *.png *.jpg )
Modified: trunk/theme/openSUSE-Crystal/wizard/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/wizard/Ma…
==============================================================================
--- trunk/theme/openSUSE-Crystal/wizard/Makefile.am (original)
+++ trunk/theme/openSUSE-Crystal/wizard/Makefile.am Tue Jul 3 16:05:48 2007
@@ -1,8 +1,8 @@
#
-# Makefile.am for theme/openSUSE/wizard
+# Makefile.am for theme/openSUSE-Crystal/wizard
#
-wizarddir = @themedir@/openSUSE/wizard
+wizarddir = @themedir@/openSUSE-Crystal/wizard
wizard_DATA = $(wildcard *.png )
Modified: trunk/theme/package/yast2-theme.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/package/yast2-theme.change…
==============================================================================
--- trunk/theme/package/yast2-theme.changes (original)
+++ trunk/theme/package/yast2-theme.changes Tue Jul 3 16:05:48 2007
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Jul 3 15:57:47 CEST 2007 - locilka(a)suse.cz
+
+- Created identical copy of yast2-theme-openSUSE under the name
+ yast2-theme-openSUSE-Crystal (FATE #301304). The old theme will
+ use Tango and the new one Crystal iconsets.
+
+-------------------------------------------------------------------
Wed Apr 18 16:46:47 CEST 2007 - juhliarik(a)suse.cz
- Added ftp-server icons
Modified: trunk/theme/yast2-theme.spec.in
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/yast2-theme.spec.in?rev=39…
==============================================================================
--- trunk/theme/yast2-theme.spec.in (original)
+++ trunk/theme/yast2-theme.spec.in Tue Jul 3 16:05:48 2007
@@ -1,25 +1,39 @@
@HEADER-COMMENT@
@HEADER@
-BuildRequires: yast2-devtools pkg-config yast2-core yast2 update-desktop-files
+BuildRequires: yast2-devtools pkg-config yast2-core yast2 update-desktop-files hicolor-icon-theme
BuildArchitectures: noarch
Summary: -
%description
-
%package openSUSE
+Summary: -
+Version: @VERSION@
+Group: System/YaST
+Provides: yast2_theme yast2-theme-UnitedLinux
+PreReq: /bin/ln
+Requires: hicolor-icon-theme
+Obsoletes: yast2-theme-SuSELinux
+Obsoletes: yast2-theme-UnitedLinux
+Conflicts: yast2-theme-openSUSE-Crystal
+%package openSUSE-Crystal
Summary: -
Version: @VERSION@
Group: System/YaST
Provides: yast2_theme yast2-theme-UnitedLinux
PreReq: /bin/ln
+Requires: hicolor-icon-theme
Obsoletes: yast2-theme-SuSELinux
Obsoletes: yast2-theme-UnitedLinux
+Conflicts: yast2-theme-openSUSE
%description openSUSE
-
+%description openSUSE-Crystal
+-
@PREP@
@@ -27,45 +41,59 @@
@INSTALL@
cp -R "$RPM_BUILD_ROOT/@docdir@" "$RPM_BUILD_ROOT/@docdir@-openSUSE"
+cp -R "$RPM_BUILD_ROOT/@docdir@" "$RPM_BUILD_ROOT/@docdir@-openSUSE-Crystal"
rm -rf "$RPM_BUILD_ROOT/@docdir@"
+# ghost file (not packed in RPM but listed)
+cd $RPM_BUILD_ROOT/@themedir@/
+rm -rf current
+ln -sn openSUSE current
#
# make icons available to GNOME control center (hicolor theme)
# (bug #166008)
mkdir -p $RPM_BUILD_ROOT/usr/share/icons/hicolor/22x22/apps
mkdir -p $RPM_BUILD_ROOT/usr/share/icons/hicolor/32x32/apps
mkdir -p $RPM_BUILD_ROOT/usr/share/icons/hicolor/48x48/apps
-cd $RPM_BUILD_ROOT/@themedir@/openSUSE/icons
+cd $RPM_BUILD_ROOT/@themedir@/current/icons
for dir in 22x22 32x32 48x48; do
- cd $RPM_BUILD_ROOT/@themedir@/openSUSE/icons/$dir/apps
+ cd $RPM_BUILD_ROOT/@themedir@/current/icons/$dir/apps
icons=$(ls *.png)
cd $RPM_BUILD_ROOT/usr/share/icons/hicolor/$dir/apps
for icon in $icons; do
- ln -s ../../../../YaST2/theme/openSUSE/icons/$dir/apps/$icon .
+ ln -s ../../../../YaST2/theme/current/icons/$dir/apps/$icon .
done
done
-
@CLEAN@
+rm -rf $RPM_BUILD_ROOT/@themedir@
%post openSUSE
cd @themedir@
ln -snf openSUSE current
+%post openSUSE-Crystal
+cd @themedir@
+ln -snf openSUSE-Crystal current
+
%files openSUSE
%defattr(-,root,root)
%dir @themedir@
-%dir @themedir@/openSUSE
-%dir /usr/share/icons/hicolor
-%dir /usr/share/icons/hicolor/22x22
-%dir /usr/share/icons/hicolor/22x22/apps
-%dir /usr/share/icons/hicolor/32x32
-%dir /usr/share/icons/hicolor/32x32/apps
-%dir /usr/share/icons/hicolor/48x48
-%dir /usr/share/icons/hicolor/48x48/apps
-@themedir@/openSUSE/*
+@themedir@/openSUSE
/usr/share/icons/hicolor/22x22/apps/*
/usr/share/icons/hicolor/32x32/apps/*
/usr/share/icons/hicolor/48x48/apps/*
-@themedir@/openSUSE/testpage/*
%doc @docdir@-openSUSE
+# ghost file (not packed in RPM but listed)
+# remove the file when removing the RPM
+%ghost @themedir@/current
+%files openSUSE-Crystal
+%defattr(-,root,root)
+%dir @themedir@
+@themedir@/openSUSE-Crystal
+/usr/share/icons/hicolor/22x22/apps/*
+/usr/share/icons/hicolor/32x32/apps/*
+/usr/share/icons/hicolor/48x48/apps/*
+%doc @docdir@-openSUSE-Crystal
+# ghost file (not packed in RPM but listed)
+# remove the file when removing the RPM
+%ghost @themedir@/current
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0