*fixed config dialog: key im/export
*add clean to unix main makefile
git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk@373
6e3c4bff-ac9f-4ac1-96c5-
d2ea494d3e33
$(DOXYGEN) Doxyfile-php
$(DOXYGEN) Doxyfile-cpp
+clean:
+ rm -rf zip/Makefile* zip/*.o zip/*.a
+ rm -rf src/.ctmp src/Makefile* src/msmoke src/core*
+ rm -rf src/wob www/inc/wob doc/wob wob/core*
+ rm -rf woc/.ctmp woc/woc woc/core* woc/Makefile*
+ rm -rf doc/source-php doc/source-cpp
+
#tell Make that the rules above are symbolic:
-.PHONY: woc wob server client sdoc zip
\ No newline at end of file
+.PHONY: woc wob server client sdoc zip
if(!idx.isValid())return;
QString pkey=profilemodel->data(idx,Qt::UserRole).toString();
st.beginGroup("profiles/"+pkey);
- QString host=st.value("hostname").toString().trimmed();
- QString key=st.value("hostkey").toString().trimmed();
+ QString host=hostname->text().trimmed();
+ QString key=hostkey->text().trimmed();
saveKey(host,key);
}
return;
}
//save
+ hostname->setText(hname);
+ hostkey->setText(key);
QSettings set;
set.beginGroup("profiles/"+profkey);
set.setValue("hostkey",key);
);
m_host=set.value("hostname").toString();
m_hostkey=set.value("hostkey").toString();
+ setLogLevel((LogLevel)set.value("webloglevel",LogOnError).toInt());
+ setWebTimeout(set.value("webtimeout",30).toInt()*1000);
sslexcept=new MSslExceptions(dataDir()+"/sslexceptions.xml");
}