You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
(11) |
Aug
(45) |
Sep
(12) |
Oct
(8) |
Nov
(4) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(1) |
Feb
(12) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(25) |
Aug
(9) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2007 |
Jan
(11) |
Feb
|
Mar
|
Apr
|
May
(19) |
Jun
(3) |
Jul
(3) |
Aug
(16) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
(54) |
Feb
(5) |
Mar
(34) |
Apr
|
May
(33) |
Jun
(7) |
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
(54) |
Dec
(32) |
2009 |
Jan
(5) |
Feb
(54) |
Mar
(29) |
Apr
(30) |
May
(86) |
Jun
(159) |
Jul
(16) |
Aug
|
Sep
(1) |
Oct
(9) |
Nov
|
Dec
(91) |
2010 |
Jan
(82) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
(31) |
Jul
(19) |
Aug
(33) |
Sep
(3) |
Oct
(1) |
Nov
(4) |
Dec
(3) |
2011 |
Jan
|
Feb
(1) |
Mar
(27) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(5) |
Dec
(4) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
(1) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(11) |
Jul
(2) |
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
(6) |
2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(10) |
Dec
|
From: <si...@us...> - 2010-08-06 12:39:09
|
Revision: 1233 http://qterm.svn.sourceforge.net/qterm/?rev=1233&view=rev Author: sidos Date: 2010-08-06 12:39:03 +0000 (Fri, 06 Aug 2010) Log Message: ----------- dont overdraw at the end more symbols Modified Paths: -------------- trunk/qterm-qt4/src/chartable.cpp Modified: trunk/qterm-qt4/src/chartable.cpp =================================================================== --- trunk/qterm-qt4/src/chartable.cpp 2010-08-06 11:40:35 UTC (rev 1232) +++ trunk/qterm-qt4/src/chartable.cpp 2010-08-06 12:39:03 UTC (rev 1233) @@ -33,10 +33,15 @@ "▁▂▃▄▅▆▇█▉▊" "▋▌▍▎▏▓╱╲╳※" "─│┌┐└┘├┤┬┴" + "═║╣╔╗╚╝╠╣╦╩" "┼↖↗↘↙→←↑↓√" "▼▽◢◣◥◤╭╮╯╰" "♂♀☉⊕〇◎〓℉℃㊣" "☆★◇◆□■△▲○●" + "☜☞♨☼☎☏◐◑↔↕" + "♫♬♩♭♪☀☁☂◕✟" + "☺☻۩۞✲❈✿✪✣✤✥✦❉❥❦❧❃❂❁❀✄☪☣☢☠☭卐" + "﹌﹏►◄▧▨№♠❤♣◊♦" "⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑" "⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛" "⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽" @@ -94,7 +99,7 @@ QFont font("SimSun",20); for (int row = beginRow; row <= endRow; ++row) { - for (int column = beginColumn; column <= endColumn; ++column) { + for (int column = beginColumn; column <= endColumn && column < maxColumn; ++column) { int n = row*maxColumn + column; QString text; if (n < symbols.length()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-06 11:40:43
|
Revision: 1232 http://qterm.svn.sourceforge.net/qterm/?rev=1232&view=rev Author: sidos Date: 2010-08-06 11:40:35 +0000 (Fri, 06 Aug 2010) Log Message: ----------- delegate symbol input to bbs terminal window Modified Paths: -------------- trunk/qterm-qt4/src/chartable.cpp trunk/qterm-qt4/src/chartable.h trunk/qterm-qt4/src/qtermframe.cpp trunk/qterm-qt4/src/qtermframe.h trunk/qterm-qt4/src/qtermwindow.cpp trunk/qterm-qt4/src/qtermwindow.h Modified: trunk/qterm-qt4/src/chartable.cpp =================================================================== --- trunk/qterm-qt4/src/chartable.cpp 2010-08-06 00:16:00 UTC (rev 1231) +++ trunk/qterm-qt4/src/chartable.cpp 2010-08-06 11:40:35 UTC (rev 1232) @@ -5,6 +5,7 @@ #include <QPainter> #include <QtDebug> +#include <QMessageBox> namespace QTerm { @@ -48,8 +49,16 @@ void CharTable ::resizeEvent(QResizeEvent *re) { maxColumn = re->size().width()/square; + setMinimumHeight((symbols.length()/maxColumn + 1)*square); } +QSize CharTable :: sizeHint() const +{ + int x = maxColumn*square; + int y = (symbols.length()/maxColumn + 1)*square; + return QSize(x, y); +} + void CharTable :: mouseMoveEvent(QMouseEvent *me) { int column = me->x()/square; Modified: trunk/qterm-qt4/src/chartable.h =================================================================== --- trunk/qterm-qt4/src/chartable.h 2010-08-06 00:16:00 UTC (rev 1231) +++ trunk/qterm-qt4/src/chartable.h 2010-08-06 11:40:35 UTC (rev 1232) @@ -11,6 +11,7 @@ Q_OBJECT public: CharTable (QWidget *parent = 0); + QSize sizeHint() const; signals: void characterSelected(QString); Modified: trunk/qterm-qt4/src/qtermframe.cpp =================================================================== --- trunk/qterm-qt4/src/qtermframe.cpp 2010-08-06 00:16:00 UTC (rev 1231) +++ trunk/qterm-qt4/src/qtermframe.cpp 2010-08-06 11:40:35 UTC (rev 1232) @@ -112,6 +112,11 @@ actionPallete->setObjectName(QString::fromUtf8("actionPallete")); connect(pallete, SIGNAL(colorChanged(int,int)), SLOT(palleteColorChanged(int,int))); + // symbols table input + actionSymbols = new QAction(this); + actionSymbols->setObjectName(QString::fromUtf8("actionSymbols")); + connect(scrollArea->widget(), SIGNAL(characterSelected(QString)), SLOT(characterSelected(QString))); + //create a progress bar to notify the download process m_pStatusBar = new QTerm::StatusBar(statusBar(), "mainStatusBar"); statusBar()->addWidget(m_pStatusBar, 0); @@ -246,6 +251,13 @@ actionPallete->trigger(); } +// symbol table delegate +void Frame::characterSelected(QString str) +{ + actionSymbols->setData(str); + actionSymbols->trigger(); +} + //addressbook void Frame::on_actionAddressBook_triggered() { Modified: trunk/qterm-qt4/src/qtermframe.h =================================================================== --- trunk/qterm-qt4/src/qtermframe.h 2010-08-06 00:16:00 UTC (rev 1231) +++ trunk/qterm-qt4/src/qtermframe.h 2010-08-06 11:40:35 UTC (rev 1232) @@ -108,6 +108,8 @@ void slotShowQTerm(); void palleteColorChanged(int index, int role); + void characterSelected(QString str); + protected: //variables QMenu * connectMenu; @@ -117,6 +119,7 @@ QSystemTrayIcon *tray; QAction *actionPallete; + QAction *actionSymbols; StatusBar *m_pStatusBar; Modified: trunk/qterm-qt4/src/qtermwindow.cpp =================================================================== --- trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-06 00:16:00 UTC (rev 1231) +++ trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-06 11:40:35 UTC (rev 1232) @@ -1352,6 +1352,12 @@ QByteArray sequence = parseString(strEscape.toLocal8Bit()); m_pTelnet->write(sequence,sequence.length()); } +void Window::on_actionSymbols_triggered(const QVariant& data) +{ + setFocus(); // steal back focus from symbol table + QByteArray text = m_codec->fromUnicode(data.toString()); + m_pTelnet->write(text,text.length()); +} void Window::on_actionDebug_Console_triggered() { @@ -1876,7 +1882,7 @@ listActions << "actionDisconnect" << "actionPrint" << "actionPrint_Preview" << "actionRefresh" - << "actionPallete" << "actionUnderline" << "actionBlink" << "actionBold" + << "actionPallete" << "actionUnderline" << "actionBlink" << "actionSymbols" << "actionCopy" << "actionPaste" << "actionAuto_Copy" << "actionCopy_w_Color" << "actionRectangle_Selection" << "actionPaste_w_Wordwrap" Modified: trunk/qterm-qt4/src/qtermwindow.h =================================================================== --- trunk/qterm-qt4/src/qtermwindow.h 2010-08-06 00:16:00 UTC (rev 1231) +++ trunk/qterm-qt4/src/qtermwindow.h 2010-08-06 11:40:35 UTC (rev 1232) @@ -103,6 +103,7 @@ void on_actionUnderline_toggled(bool underline); void on_actionBlink_toggled(bool blink); void on_actionPallete_triggered(const QVariant& data); + void on_actionSymbols_triggered(const QVariant& data); // View void on_actionRefresh_triggered(); void on_actionBoss_Color_toggled(bool); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hep...@us...> - 2010-08-06 00:16:05
|
Revision: 1231 http://qterm.svn.sourceforge.net/qterm/?rev=1231&view=rev Author: hephooey Date: 2010-08-06 00:16:00 +0000 (Fri, 06 Aug 2010) Log Message: ----------- Initialize the wallet before using it, crash-- Modified Paths: -------------- trunk/qterm-qt4/src/qtermglobal.cpp Modified: trunk/qterm-qt4/src/qtermglobal.cpp =================================================================== --- trunk/qterm-qt4/src/qtermglobal.cpp 2010-08-06 00:15:54 UTC (rev 1230) +++ trunk/qterm-qt4/src/qtermglobal.cpp 2010-08-06 00:16:00 UTC (rev 1231) @@ -67,6 +67,14 @@ m_windowState(), m_status(INIT_OK), m_style(), m_fullScreen(false), m_language(Global::English) { +#ifdef KWALLET_ENABLED + if (Wallet::isWalletAvailable()) { + qDebug() << "KWallet service found"; + m_wallet = new Wallet(this); + } else { + m_wallet = NULL; + } +#endif // KWALLET_ENABLED if (!iniWorkingDir(qApp->arguments()[0])) { m_status = INIT_ERROR; return; @@ -77,14 +85,6 @@ m_config = new Config(m_fileCfg); m_address = new Config(m_addrCfg); m_converter = new Convert(); -#ifdef KWALLET_ENABLED - if (Wallet::isWalletAvailable()) { - qDebug() << "KWallet service found"; - m_wallet = new Wallet(this); - } else { - m_wallet = NULL; - } -#endif // KWALLET_ENABLED if (!iniSettings()) { m_status = INIT_ERROR; return; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hep...@us...> - 2010-08-06 00:16:01
|
Revision: 1230 http://qterm.svn.sourceforge.net/qterm/?rev=1230&view=rev Author: hephooey Date: 2010-08-06 00:15:54 +0000 (Fri, 06 Aug 2010) Log Message: ----------- Fix make install Modified Paths: -------------- trunk/qterm-qt4/src/doc/CMakeLists.txt Modified: trunk/qterm-qt4/src/doc/CMakeLists.txt =================================================================== --- trunk/qterm-qt4/src/doc/CMakeLists.txt 2010-08-05 14:50:33 UTC (rev 1229) +++ trunk/qterm-qt4/src/doc/CMakeLists.txt 2010-08-06 00:15:54 UTC (rev 1230) @@ -25,7 +25,7 @@ DEPENDS qterm.qhc) INSTALL( - FILES qterm.qhc + FILES ${CMAKE_CURRENT_BINARY_DIR}/qterm.qhc DESTINATION share/qterm/doc ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-05 14:50:39
|
Revision: 1229 http://qterm.svn.sourceforge.net/qterm/?rev=1229&view=rev Author: sidos Date: 2010-08-05 14:50:33 +0000 (Thu, 05 Aug 2010) Log Message: ----------- add ascii symbol table to dock Modified Paths: -------------- trunk/qterm-qt4/src/CMakeLists.txt trunk/qterm-qt4/src/ui/mainframe.ui Added Paths: ----------- trunk/qterm-qt4/src/chartable.cpp trunk/qterm-qt4/src/chartable.h Modified: trunk/qterm-qt4/src/CMakeLists.txt =================================================================== --- trunk/qterm-qt4/src/CMakeLists.txt 2010-08-04 17:24:11 UTC (rev 1228) +++ trunk/qterm-qt4/src/CMakeLists.txt 2010-08-05 14:50:33 UTC (rev 1229) @@ -165,6 +165,7 @@ uaocodec.cpp dommodel.cpp pallete.cpp + chartable.cpp ${optionalSources}) set(qterm_UIS ui/aboutdialog.ui Added: trunk/qterm-qt4/src/chartable.cpp =================================================================== --- trunk/qterm-qt4/src/chartable.cpp (rev 0) +++ trunk/qterm-qt4/src/chartable.cpp 2010-08-05 14:50:33 UTC (rev 1229) @@ -0,0 +1,112 @@ +#include "chartable.h" + +#include <QMouseEvent> +#include <QResizeEvent> +#include <QPainter> + +#include <QtDebug> + +namespace QTerm +{ + +CharTable :: CharTable(QWidget *parent) + : QWidget(parent) +{ + setMouseTracking(true); + maxColumn = 10; + square = 25; + symbols = QString::fromUtf8("+-×÷±∵∴∈≡∝" + "∑∏∪∩∫∮∶∧∨∷" + "≌≈∽≠≮≯≤≥∞∠" + "〔〕()〈〉《》「」" + "『』〖〗【】[]{}" + "︵︶︹︺︿﹀︽︾﹁﹂" + "﹃﹄︻︼︷︸‘’“”" + "ΑΒΓΔΕΖΗΘΙΚ" + "ΛΜΝΞΟΠΡΣΤΥ" + "ΦΧΨΩαβγδεζ" + "ηθικλμνξοπ" + "ρστυφχψω㎎" + "℡㎏㎜㎝㎞㎡㏄〾⿰⿱" + "⿲⿳⿴⿵⿶⿷⿸⿹⿺⿻" + "▁▂▃▄▅▆▇█▉▊" + "▋▌▍▎▏▓╱╲╳※" + "─│┌┐└┘├┤┬┴" + "┼↖↗↘↙→←↑↓√" + "▼▽◢◣◥◤╭╮╯╰" + "♂♀☉⊕〇◎〓℉℃㊣" + "☆★◇◆□■△▲○●" + "⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑" + "⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛" + "⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽" + "①②③④⑤⑥⑦⑧⑨⑩" + "㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩" + "ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ" + "ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ"); +} + +void CharTable ::resizeEvent(QResizeEvent *re) +{ + maxColumn = re->size().width()/square; +} + +void CharTable :: mouseMoveEvent(QMouseEvent *me) +{ + int column = me->x()/square; + int row = me->y()/square; + if (hovered == QPoint(column, row)) + return; + QRect oldRect(hovered.x()*square, hovered.y()*square, square, square); + hovered.setX(column); + hovered.setY(row); + QRect newRect(hovered.x()*square, hovered.y()*square, square, square); + update(oldRect.united(newRect)); +} + +void CharTable :: mouseReleaseEvent(QMouseEvent *me) +{ + if (me->button() == Qt::LeftButton) { + int n = (me->y()/square)*maxColumn + me->x()/square; + if (n<symbols.length()) + emit characterSelected(symbols.at(n)); + update(); + } +} + +void CharTable :: paintEvent(QPaintEvent *pe) +{ + QPainter painter(this); + painter.fillRect(pe->rect(), QBrush(Qt::white)); + QRect redrawRect = pe->rect(); + int beginRow = redrawRect.top()/square; + int endRow = redrawRect.bottom()/square; + int beginColumn = redrawRect.left()/square; + int endColumn = redrawRect.right()/square; + QFont font("SimSun",20); + + for (int row = beginRow; row <= endRow; ++row) { + for (int column = beginColumn; column <= endColumn; ++column) { + int n = row*maxColumn + column; + QString text; + if (n < symbols.length()) + text = symbols.at(n); + QRect textRect = QRect(column*square, row*square, square, square); + if (hovered == QPoint(column, row)) { + painter.fillRect(textRect, palette().highlight()); + painter.setPen(palette().highlightedText().color()); + } else { + painter.setPen(QPen(Qt::gray)); + painter.drawRect(textRect); + painter.setPen(QPen(Qt::black)); + } + if (!text.isEmpty()) { + painter.setFont(font); + painter.drawText(textRect, Qt::AlignCenter, text); + } + } + } +} + +} + +#include "chartable.moc" Added: trunk/qterm-qt4/src/chartable.h =================================================================== --- trunk/qterm-qt4/src/chartable.h (rev 0) +++ trunk/qterm-qt4/src/chartable.h 2010-08-05 14:50:33 UTC (rev 1229) @@ -0,0 +1,35 @@ +#ifndef CHARTABLE_H +#define CHARTABLE_H + +#include <QWidget> + +namespace QTerm +{ + +class CharTable : public QWidget +{ + Q_OBJECT +public: + CharTable (QWidget *parent = 0); + +signals: + void characterSelected(QString); + +protected: + void resizeEvent(QResizeEvent *re); + void mouseMoveEvent(QMouseEvent *me); + void mouseReleaseEvent(QMouseEvent *me); + void paintEvent(QPaintEvent *pe); + +private: + QString symbols; + int maxColumn; + int square; + QPoint hovered; +}; + + + +} + +#endif Modified: trunk/qterm-qt4/src/ui/mainframe.ui =================================================================== --- trunk/qterm-qt4/src/ui/mainframe.ui 2010-08-04 17:24:11 UTC (rev 1228) +++ trunk/qterm-qt4/src/ui/mainframe.ui 2010-08-05 14:50:33 UTC (rev 1229) @@ -239,6 +239,35 @@ <addaction name="actionUnderline"/> <addaction name="actionBlink"/> </widget> + <widget class="QDockWidget" name="dockWidget"> + <property name="windowTitle"> + <string>ANSI Edit</string> + </property> + <attribute name="dockWidgetArea"> + <number>1</number> + </attribute> + <widget class="QWidget" name="dockWidgetContents"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QScrollArea" name="scrollArea"> + <property name="widgetResizable"> + <bool>true</bool> + </property> + <widget class="QTerm::CharTable" name="scrollAreaWidgetContents"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>254</width> + <height>280</height> + </rect> + </property> + </widget> + </widget> + </item> + </layout> + </widget> + </widget> <action name="actionQuick_Login"> <property name="icon"> <iconset resource="../qterm.qrc"> @@ -760,6 +789,14 @@ </property> </action> </widget> + <customwidgets> + <customwidget> + <class>QTerm::CharTable</class> + <extends>QWidget</extends> + <header>chartable.h</header> + <container>1</container> + </customwidget> + </customwidgets> <resources> <include location="../qterm.qrc"/> </resources> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-04 17:24:17
|
Revision: 1228 http://qterm.svn.sourceforge.net/qterm/?rev=1228&view=rev Author: sidos Date: 2010-08-04 17:24:11 +0000 (Wed, 04 Aug 2010) Log Message: ----------- forgotten ui Added Paths: ----------- trunk/qterm-qt4/src/ui/pallete.ui Added: trunk/qterm-qt4/src/ui/pallete.ui =================================================================== --- trunk/qterm-qt4/src/ui/pallete.ui (rev 0) +++ trunk/qterm-qt4/src/ui/pallete.ui 2010-08-04 17:24:11 UTC (rev 1228) @@ -0,0 +1,280 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>Pallete</class> + <widget class="QWidget" name="Pallete"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>330</width> + <height>62</height> + </rect> + </property> + <property name="minimumSize"> + <size> + <width>330</width> + <height>62</height> + </size> + </property> + <widget class="QFrame" name="clr0Frame"> + <property name="geometry"> + <rect> + <x>90</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 0, 0);</string> + </property> + </widget> + <widget class="QFrame" name="clr1Frame"> + <property name="geometry"> + <rect> + <x>120</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(205, 0, 0);</string> + </property> + </widget> + <widget class="QFrame" name="clr2Frame"> + <property name="geometry"> + <rect> + <x>150</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 205, 0);</string> + </property> + </widget> + <widget class="QFrame" name="clr3Frame"> + <property name="geometry"> + <rect> + <x>180</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(205, 205, 0);</string> + </property> + </widget> + <widget class="QFrame" name="clr6Frame"> + <property name="geometry"> + <rect> + <x>270</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 205, 205);</string> + </property> + </widget> + <widget class="QFrame" name="clr4Frame"> + <property name="geometry"> + <rect> + <x>210</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 0, 238);</string> + </property> + </widget> + <widget class="QFrame" name="clr5Frame"> + <property name="geometry"> + <rect> + <x>240</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(205, 0, 205);</string> + </property> + </widget> + <widget class="QFrame" name="clr7Frame"> + <property name="geometry"> + <rect> + <x>300</x> + <y>0</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(229, 229, 229);</string> + </property> + </widget> + <widget class="QFrame" name="clr13Frame"> + <property name="geometry"> + <rect> + <x>240</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(255, 0, 255);</string> + </property> + </widget> + <widget class="QFrame" name="clr15Frame"> + <property name="geometry"> + <rect> + <x>300</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(255, 255, 255);</string> + </property> + </widget> + <widget class="QFrame" name="clr14Frame"> + <property name="geometry"> + <rect> + <x>270</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(55, 255, 255);</string> + </property> + </widget> + <widget class="QFrame" name="clr10Frame"> + <property name="geometry"> + <rect> + <x>150</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 255, 0);</string> + </property> + </widget> + <widget class="QFrame" name="clr8Frame"> + <property name="geometry"> + <rect> + <x>90</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(127, 127, 127);</string> + </property> + </widget> + <widget class="QFrame" name="clr12Frame"> + <property name="geometry"> + <rect> + <x>210</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(92, 92, 255);</string> + </property> + </widget> + <widget class="QFrame" name="clr9Frame"> + <property name="geometry"> + <rect> + <x>120</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(255, 0, 0);</string> + </property> + </widget> + <widget class="QFrame" name="clr11Frame"> + <property name="geometry"> + <rect> + <x>180</x> + <y>30</y> + <width>31</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(255, 255, 0);</string> + </property> + </widget> + <widget class="QLabel" name="fgLabel"> + <property name="geometry"> + <rect> + <x>10</x> + <y>10</y> + <width>51</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 0, 0);</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + <widget class="QLabel" name="bgLabel"> + <property name="geometry"> + <rect> + <x>30</x> + <y>20</y> + <width>51</width> + <height>31</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(255, 255, 255);</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + <zorder>bgLabel</zorder> + <zorder>fgLabel</zorder> + <zorder>clr0Frame</zorder> + <zorder>clr1Frame</zorder> + <zorder>clr2Frame</zorder> + <zorder>clr3Frame</zorder> + <zorder>clr6Frame</zorder> + <zorder>clr4Frame</zorder> + <zorder>clr5Frame</zorder> + <zorder>clr7Frame</zorder> + <zorder>clr8Frame</zorder> + <zorder>clr9Frame</zorder> + <zorder>clr10Frame</zorder> + <zorder>clr11Frame</zorder> + <zorder>clr12Frame</zorder> + <zorder>clr13Frame</zorder> + <zorder>clr14Frame</zorder> + <zorder>clr15Frame</zorder> + </widget> + <resources/> + <connections/> +</ui> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-04 12:57:23
|
Revision: 1227 http://qterm.svn.sourceforge.net/qterm/?rev=1227&view=rev Author: sidos Date: 2010-08-04 12:57:16 +0000 (Wed, 04 Aug 2010) Log Message: ----------- basic ANSI escape sequence input Modified Paths: -------------- trunk/qterm-qt4/src/CMakeLists.txt trunk/qterm-qt4/src/qtermframe.cpp trunk/qterm-qt4/src/qtermframe.h trunk/qterm-qt4/src/qtermwindow.cpp trunk/qterm-qt4/src/qtermwindow.h trunk/qterm-qt4/src/ui/mainframe.ui Added Paths: ----------- trunk/qterm-qt4/src/pallete.cpp trunk/qterm-qt4/src/pallete.h Modified: trunk/qterm-qt4/src/CMakeLists.txt =================================================================== --- trunk/qterm-qt4/src/CMakeLists.txt 2010-08-02 14:49:44 UTC (rev 1226) +++ trunk/qterm-qt4/src/CMakeLists.txt 2010-08-04 12:57:16 UTC (rev 1227) @@ -116,6 +116,7 @@ ui_toolbardialog.h ui_zmodemdialog.h ui_closedialog.h + ui_pallete.h aboutdialog.cpp addrdialog.cpp articledialog.cpp @@ -163,6 +164,7 @@ closedialog.cpp uaocodec.cpp dommodel.cpp + pallete.cpp ${optionalSources}) set(qterm_UIS ui/aboutdialog.ui @@ -180,7 +182,8 @@ ui/soundconf.ui ui/sshlogin.ui ui/toolbardialog.ui - ui/zmodemdialog.ui) + ui/zmodemdialog.ui + ui/pallete.ui) set(qterm_MISC address.xml credits Added: trunk/qterm-qt4/src/pallete.cpp =================================================================== --- trunk/qterm-qt4/src/pallete.cpp (rev 0) +++ trunk/qterm-qt4/src/pallete.cpp 2010-08-04 12:57:16 UTC (rev 1227) @@ -0,0 +1,54 @@ +#include "pallete.h" + +#include <QMouseEvent> +#include <QMessageBox> + +namespace QTerm +{ + +Pallete::Pallete( QWidget* parent, Qt::WFlags fl ) + : QWidget( parent, fl ) +{ + setupUi(this); + frameList << clr0Frame << clr1Frame << clr2Frame << clr3Frame << + clr4Frame << clr5Frame << clr6Frame << clr7Frame << + clr8Frame << clr9Frame << clr10Frame << clr11Frame << + clr12Frame << clr13Frame << clr14Frame << clr15Frame; + + installEventFilter(this); +} + +bool Pallete::eventFilter(QObject *obj, QEvent *e) +{ + // ignore context menu which is often triggered by right mouse button + if (e->type() == QEvent::ContextMenu) { + return true; + } + if (e->type() == QEvent::MouseButtonRelease) { + QMouseEvent *me = static_cast<QMouseEvent *>(e); + QFrame *frame = qobject_cast<QFrame*>(childAt(me->pos())); + int n = 0; + if ( (n=frameList.indexOf(frame)) == -1) + return false; + switch (me->button()) + { + case Qt::LeftButton: + fgLabel->setStyleSheet(frame->styleSheet()); + emit colorChanged(n, 0); + break; + case Qt::RightButton: + if (n<8) { + bgLabel->setStyleSheet(frame->styleSheet()); + emit colorChanged(n, 1); + } + break; + default: + return false; + } + return true; + } + return QWidget::eventFilter(obj, e); +} + +} +#include <pallete.moc> \ No newline at end of file Added: trunk/qterm-qt4/src/pallete.h =================================================================== --- trunk/qterm-qt4/src/pallete.h (rev 0) +++ trunk/qterm-qt4/src/pallete.h 2010-08-04 12:57:16 UTC (rev 1227) @@ -0,0 +1,24 @@ +#ifndef PALLETE_H +#define PALLETE_H + +#include "ui_pallete.h" +namespace QTerm +{ +class Pallete : public QWidget, Ui::Pallete +{ + Q_OBJECT + +signals: + void colorChanged(int index, int role); +public: + Pallete( QWidget* parent = 0, Qt::WFlags fl = 0 ); +protected: + bool eventFilter(QObject *obj, QEvent *e); + +private: + QList<QFrame*> frameList; +}; + +} // namespace QTerm + +#endif // PALLETE_H Modified: trunk/qterm-qt4/src/qtermframe.cpp =================================================================== --- trunk/qterm-qt4/src/qtermframe.cpp 2010-08-02 14:49:44 UTC (rev 1226) +++ trunk/qterm-qt4/src/qtermframe.cpp 2010-08-04 12:57:16 UTC (rev 1227) @@ -27,6 +27,7 @@ #include "shortcutsdialog.h" #include "toolbardialog.h" #include "closedialog.h" +#include "pallete.h" #ifdef DBUS_ENABLED #include "dbus.h" @@ -105,6 +106,11 @@ connect(DBus::instance(), SIGNAL(showQTerm()), this, SLOT(slotShowQTerm())); #endif //DBUS_ENABLED + // pallete box + Pallete * pallete = new Pallete(ansiToolBar); + actionPallete = ansiToolBar->addWidget(pallete); + actionPallete->setObjectName(QString::fromUtf8("actionPallete")); + connect(pallete, SIGNAL(colorChanged(int,int)), SLOT(palleteColorChanged(int,int))); //create a progress bar to notify the download process m_pStatusBar = new QTerm::StatusBar(statusBar(), "mainStatusBar"); @@ -233,6 +239,13 @@ /********************************************************* * SLOTS * *********************************************************/ +// pallete box delegate +void Frame::palleteColorChanged(int index, int role) +{ + actionPallete->setData((index << 4) + role); + actionPallete->trigger(); +} + //addressbook void Frame::on_actionAddressBook_triggered() { @@ -482,8 +495,14 @@ QString nameSlot="on_"+action->objectName()+"_triggered"; if(wb->hasAction(action->objectName())) { - bool ret=QMetaObject::invokeMethod(wb, - nameSlot.toLatin1().constData()); + bool ret = false; + QVariant data = action->data(); + if (data.isNull()) + ret=QMetaObject::invokeMethod(wb, + nameSlot.toLatin1().constData()); + else + ret=QMetaObject::invokeMethod(wb, + nameSlot.toLatin1().constData(), Q_ARG(QVariant, data)); if(!ret) qWarning("Failed to execute %s", nameSlot.toLatin1().constData()); Modified: trunk/qterm-qt4/src/qtermframe.h =================================================================== --- trunk/qterm-qt4/src/qtermframe.h 2010-08-02 14:49:44 UTC (rev 1226) +++ trunk/qterm-qt4/src/qtermframe.h 2010-08-04 12:57:16 UTC (rev 1227) @@ -107,7 +107,7 @@ void switchWin(int); void slotShowQTerm(); - + void palleteColorChanged(int index, int role); protected: //variables QMenu * connectMenu; @@ -116,6 +116,8 @@ QMenu *trayMenu; QSystemTrayIcon *tray; + QAction *actionPallete; + StatusBar *m_pStatusBar; //function Modified: trunk/qterm-qt4/src/qtermwindow.cpp =================================================================== --- trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 14:49:44 UTC (rev 1226) +++ trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-04 12:57:16 UTC (rev 1227) @@ -1309,6 +1309,50 @@ m_pScreen->update(); } +void Window::on_actionUnderline_toggled(bool underline) +{ + QString strEscape = m_param.m_mapParam["escape"].toString(); + if (underline) + strEscape += "4m"; + else + strEscape += "0m"; + QByteArray sequence = parseString(strEscape.toLocal8Bit()); + m_pTelnet->write(sequence,sequence.length()); +} +void Window::on_actionBlink_toggled(bool blink) +{ + QString strEscape = m_param.m_mapParam["escape"].toString(); + if (blink) + strEscape += "5m"; + else + strEscape += "0m"; + QByteArray sequence = parseString(strEscape.toLocal8Bit()); + m_pTelnet->write(sequence,sequence.length()); +} +void Window::on_actionPallete_triggered(const QVariant& data) +{ + if (data.isNull()) + return; + int index = data.toInt() >> 4; + int role = data.toInt() & 0x0f; + int color = index; + QString strEscape = m_param.m_mapParam["escape"].toString(); + // highlight + if (index > 7) { + strEscape += "1;"; + color = index - 8; + } + // fg or bg + if (role == 0) //fg + strEscape += QString::number(30+color); + else // bg + strEscape += QString::number(40+color); + strEscape += "m"; + // write to server + QByteArray sequence = parseString(strEscape.toLocal8Bit()); + m_pTelnet->write(sequence,sequence.length()); +} + void Window::on_actionDebug_Console_triggered() { #ifdef SCRIPTTOOLS_ENABLED @@ -1832,6 +1876,7 @@ listActions << "actionDisconnect" << "actionPrint" << "actionPrint_Preview" << "actionRefresh" + << "actionPallete" << "actionUnderline" << "actionBlink" << "actionBold" << "actionCopy" << "actionPaste" << "actionAuto_Copy" << "actionCopy_w_Color" << "actionRectangle_Selection" << "actionPaste_w_Wordwrap" Modified: trunk/qterm-qt4/src/qtermwindow.h =================================================================== --- trunk/qterm-qt4/src/qtermwindow.h 2010-08-02 14:49:44 UTC (rev 1226) +++ trunk/qterm-qt4/src/qtermwindow.h 2010-08-04 12:57:16 UTC (rev 1227) @@ -100,6 +100,9 @@ void on_actionCopy_w_Color_toggled(bool color) { m_bColorCopy = color; } void on_actionAuto_Copy_toggled(bool automatic) { m_bAutoCopy = automatic; } void on_actionPaste_w_Wrodwrap(bool wordwrap) { m_bWordWrap = wordwrap; } + void on_actionUnderline_toggled(bool underline); + void on_actionBlink_toggled(bool blink); + void on_actionPallete_triggered(const QVariant& data); // View void on_actionRefresh_triggered(); void on_actionBoss_Color_toggled(bool); Modified: trunk/qterm-qt4/src/ui/mainframe.ui =================================================================== --- trunk/qterm-qt4/src/ui/mainframe.ui 2010-08-02 14:49:44 UTC (rev 1226) +++ trunk/qterm-qt4/src/ui/mainframe.ui 2010-08-04 12:57:16 UTC (rev 1227) @@ -226,6 +226,19 @@ </attribute> <addaction name="actionKey_Setup"/> </widget> + <widget class="QToolBar" name="ansiToolBar"> + <property name="windowTitle"> + <string>ANSI Edit</string> + </property> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + <addaction name="actionUnderline"/> + <addaction name="actionBlink"/> + </widget> <action name="actionQuick_Login"> <property name="icon"> <iconset resource="../qterm.qrc"> @@ -724,6 +737,28 @@ <string>Boss Color</string> </property> </action> + <action name="actionUnderline"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>Underline</string> + </property> + <property name="toolTip"> + <string>Underline</string> + </property> + </action> + <action name="actionBlink"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>Blink</string> + </property> + <property name="toolTip"> + <string>Blink</string> + </property> + </action> </widget> <resources> <include location="../qterm.qrc"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 14:49:50
|
Revision: 1226 http://qterm.svn.sourceforge.net/qterm/?rev=1226&view=rev Author: sidos Date: 2010-08-02 14:49:44 +0000 (Mon, 02 Aug 2010) Log Message: ----------- reorganize toolbuttons Modified Paths: -------------- trunk/qterm-qt4/src/ui/mainframe.ui Modified: trunk/qterm-qt4/src/ui/mainframe.ui =================================================================== --- trunk/qterm-qt4/src/ui/mainframe.ui 2010-08-02 12:30:48 UTC (rev 1225) +++ trunk/qterm-qt4/src/ui/mainframe.ui 2010-08-02 14:49:44 UTC (rev 1226) @@ -200,6 +200,7 @@ <bool>false</bool> </attribute> <addaction name="actionConnect"/> + <addaction name="actionQuick_Login"/> <addaction name="actionDisconnect"/> </widget> <widget class="QToolBar" name="mainToolBar"> @@ -212,7 +213,6 @@ <attribute name="toolBarBreak"> <bool>false</bool> </attribute> - <addaction name="actionQuick_Login"/> </widget> <widget class="QToolBar" name="keyToolBar"> <property name="windowTitle"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 12:30:55
|
Revision: 1225 http://qterm.svn.sourceforge.net/qterm/?rev=1225&view=rev Author: sidos Date: 2010-08-02 12:30:48 +0000 (Mon, 02 Aug 2010) Log Message: ----------- bug when append items Modified Paths: -------------- trunk/qterm-qt4/src/dommodel.cpp Modified: trunk/qterm-qt4/src/dommodel.cpp =================================================================== --- trunk/qterm-qt4/src/dommodel.cpp 2010-08-02 10:55:15 UTC (rev 1224) +++ trunk/qterm-qt4/src/dommodel.cpp 2010-08-02 12:30:48 UTC (rev 1225) @@ -112,7 +112,10 @@ return; QDomNode node = domElement.childNodes().item(i); - domElement.insertBefore(item->element(),node); + if (node.isNull()) + domElement.appendChild(item->element()); + else + domElement.insertBefore(item->element(),node); item->reparent(this); childItems.insert(i, item); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 10:55:21
|
Revision: 1224 http://qterm.svn.sourceforge.net/qterm/?rev=1224&view=rev Author: sidos Date: 2010-08-02 10:55:15 +0000 (Mon, 02 Aug 2010) Log Message: ----------- script actions enabled Modified Paths: -------------- trunk/qterm-qt4/src/qtermwindow.cpp Modified: trunk/qterm-qt4/src/qtermwindow.cpp =================================================================== --- trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 10:24:50 UTC (rev 1223) +++ trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 10:55:15 UTC (rev 1224) @@ -1831,12 +1831,14 @@ { listActions << "actionDisconnect" << "actionPrint" << "actionPrint_Preview" + << "actionRefresh" << "actionCopy" << "actionPaste" << "actionAuto_Copy" << "actionCopy_w_Color" << "actionRectangle_Selection" << "actionPaste_w_Wordwrap" << "actionAnti_idle" << "actionAuto_Reply" << "actionCopy_Article" << "actionView_Message" << "actionBoss_Color" + << "actionDebug_Console" << "actionRun" << "actionStop" << "actionReload_Script" << "actionCurrent_Session_Setting"; mapToggleStates["actionAuto_Copy"] = &m_bAutoCopy; mapToggleStates["actionCopy_w_Color"] = &m_bColorCopy; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 10:24:57
|
Revision: 1223 http://qterm.svn.sourceforge.net/qterm/?rev=1223&view=rev Author: sidos Date: 2010-08-02 10:24:50 +0000 (Mon, 02 Aug 2010) Log Message: ----------- copy article action is missing Modified Paths: -------------- trunk/qterm-qt4/src/qtermwindow.cpp Modified: trunk/qterm-qt4/src/qtermwindow.cpp =================================================================== --- trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 09:39:16 UTC (rev 1222) +++ trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 10:24:50 UTC (rev 1223) @@ -1835,6 +1835,7 @@ << "actionAuto_Copy" << "actionCopy_w_Color" << "actionRectangle_Selection" << "actionPaste_w_Wordwrap" << "actionAnti_idle" << "actionAuto_Reply" + << "actionCopy_Article" << "actionView_Message" << "actionBoss_Color" << "actionCurrent_Session_Setting"; mapToggleStates["actionAuto_Copy"] = &m_bAutoCopy; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 09:39:22
|
Revision: 1222 http://qterm.svn.sourceforge.net/qterm/?rev=1222&view=rev Author: sidos Date: 2010-08-02 09:39:16 +0000 (Mon, 02 Aug 2010) Log Message: ----------- remove inapproperiate actions Modified Paths: -------------- trunk/qterm-qt4/src/qtermwindow.cpp Modified: trunk/qterm-qt4/src/qtermwindow.cpp =================================================================== --- trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 09:25:57 UTC (rev 1221) +++ trunk/qterm-qt4/src/qtermwindow.cpp 2010-08-02 09:39:16 UTC (rev 1222) @@ -1830,7 +1830,6 @@ void Window :: groupActions() { listActions << "actionDisconnect" - << "actionSave" << "actionSave_As" << "actionPrint" << "actionPrint_Preview" << "actionCopy" << "actionPaste" << "actionAuto_Copy" << "actionCopy_w_Color" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 09:26:05
|
Revision: 1221 http://qterm.svn.sourceforge.net/qterm/?rev=1221&view=rev Author: sidos Date: 2010-08-02 09:25:57 +0000 (Mon, 02 Aug 2010) Log Message: ----------- remove extra spaces from host address Modified Paths: -------------- trunk/qterm-qt4/src/address.xml Modified: trunk/qterm-qt4/src/address.xml =================================================================== --- trunk/qterm-qt4/src/address.xml 2010-08-02 09:18:05 UTC (rev 1220) +++ trunk/qterm-qt4/src/address.xml 2010-08-02 09:25:57 UTC (rev 1221) @@ -116,7 +116,7 @@ <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{5f567933-0798-476f-ba35-43947228ba31}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.neu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="白山黑水" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{83174459-86f4-4484-ac19-a60b39194a3c}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.lnu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="天辽地大" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{f9882fa5-65a6-4115-9e61-6cd836e0598a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.jlu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="牡丹园" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{11a7b700-3a10-47bf-b83a-47f101086e1a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="mitbbs.com " sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="未名空间" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{11a7b700-3a10-47bf-b83a-47f101086e1a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="mitbbs.com" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="未名空间" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{bc574211-bedf-40d5-ae97-511416b4e6cf}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.zixia.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="大话西游" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{4c892e99-7848-4de0-8550-f10b79b2c5c7}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.ncic.ac.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="曙光站" user=""/> </addresses> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 09:18:14
|
Revision: 1220 http://qterm.svn.sourceforge.net/qterm/?rev=1220&view=rev Author: sidos Date: 2010-08-02 09:18:05 +0000 (Mon, 02 Aug 2010) Log Message: ----------- bbs list imported from http://bbslist.googlecode.com/svn/trunk/ Modified Paths: -------------- trunk/qterm-qt4/src/address.xml Modified: trunk/qterm-qt4/src/address.xml =================================================================== --- trunk/qterm-qt4/src/address.xml 2010-08-02 06:51:05 UTC (rev 1219) +++ trunk/qterm-qt4/src/address.xml 2010-08-02 09:18:05 UTC (rev 1220) @@ -1,21 +1,68 @@ <?xml version='1.0' encoding='UTF-8'?> <addresses> <folder name="CERNET"> - <addsite uuid="{3b0d01a5-9c04-47e2-b0a0-4dcadd7b1bdc}"/> - <addsite uuid="{a24ae09d-4790-45a3-84a2-1e7d1e8801cc}"/> - <addsite uuid="{04494339-9b78-43e2-b5d5-6732c59aa645}"/> - <addsite uuid="{99eef812-97db-483d-9bdd-46905859dfa1}"/> - <addsite uuid="{da3dc7b5-320d-48cb-96cd-eed3715b3bd3}"/> - <addsite uuid="{6477e58a-a02b-4087-9ab6-3476aa6ca738}"/> - <addsite uuid="{53785aed-3e58-488d-940a-56d627844769}"/> - <addsite uuid="{57fa7f71-ed5e-4c83-98c4-e65ed1d7c573}"/> - <addsite uuid="{05317536-7bb3-4049-8668-e58a9ca10554}"/> - <addsite uuid="{927ce3e1-0805-4480-97d6-5ec0d623189c}"/> - <addsite uuid="{3d830668-67bc-4762-8a40-403e34d92cfe}"/> - <addsite uuid="{3cdd096c-f8d4-46df-b733-88fe8701d9b3}"/> - <addsite uuid="{ebcff8a3-37ef-48f9-9151-6c3392ed46c4}"/> - <addsite uuid="{99377d01-60ed-4e3c-b489-c6cc15eb1920}"/> - <addsite uuid="{fe512d68-ba26-4904-b933-5f87fd07d765}"/> + <folder name="东北"> + <addsite uuid="{318492c9-9898-44ee-a81c-a6e6655667df}"/> + <addsite uuid="{5f567933-0798-476f-ba35-43947228ba31}"/> + <addsite uuid="{83174459-86f4-4484-ac19-a60b39194a3c}"/> + <addsite uuid="{f9882fa5-65a6-4115-9e61-6cd836e0598a}"/> + <addsite uuid="{3cdd096c-f8d4-46df-b733-88fe8701d9b3}"/> + </folder> + <folder name="华北"> + <addsite uuid="{4c892e99-7848-4de0-8550-f10b79b2c5c7}"/> + <addsite uuid="{4716cffa-f163-4a85-a591-a3aa0a91a062}"/> + <addsite uuid="{c722a1e1-84ef-4859-a54f-e38bed0fc080}"/> + <addsite uuid="{05317536-7bb3-4049-8668-e58a9ca10554}"/> + <addsite uuid="{756afb2d-4cfe-4315-9dcf-8d44286c0d97}"/> + <addsite uuid="{61d73a7d-a067-4a18-9715-4dec3ed2f789}"/> + <addsite uuid="{4df9ecae-c7b8-4ca6-9b95-3c31ef5c19a4}"/> + <addsite uuid="{d063e2ff-84b5-457f-a0f9-2c6ed3e3b108}"/> + <addsite uuid="{aecb8f56-cdc7-4f0c-90bf-9232f3484efd}"/> + <addsite uuid="{f6ad0bc4-dcf8-462e-94f6-9b8b3f0b94d5}"/> + <addsite uuid="{44545ca9-3c85-4975-a8dd-d0aae516cb4c}"/> + <addsite uuid="{c58116bb-2190-41f2-9690-76240c808527}"/> + <addsite uuid="{bf3d1f0b-e347-4c6f-91c9-e7986c1cfd0f}"/> + <addsite uuid="{45e2e70b-6c55-4367-9d8b-29b36a22adae}"/> + <addsite uuid="{99eef812-97db-483d-9bdd-46905859dfa1}"/> + </folder> + <folder name="西北"> + <addsite uuid="{7e4a2784-f829-42a6-aba0-6eff8f154e1c}"/> + <addsite uuid="{b29b6e08-a865-4b1b-9e3a-35fce1b56a73}"/> + <addsite uuid="{3317f58f-48eb-42a0-b8f4-5aa2cba99d43}"/> + </folder> + <folder name="华东"> + <addsite uuid="{56632feb-e42c-4588-bb3a-c19f2f429515}"/> + <addsite uuid="{64e16327-52cc-4d0d-a9ed-ce1df6aa8b89}"/> + <addsite uuid="{204afeb3-c66b-4ba3-b195-8b888d0e2537}"/> + <addsite uuid="{e352b1be-21b0-447f-8962-1cb52dda323a}"/> + <addsite uuid="{63823cb5-b087-4035-8cd4-46acf5aaada8}"/> + <addsite uuid="{c863fb3d-46b6-42d1-a797-970e7013942b}"/> + <addsite uuid="{eeb1dd5c-d82d-4a97-8579-858ac840c7f8}"/> + <addsite uuid="{d79f33ef-0d4d-45a1-8bdc-1815a23512cf}"/> + <addsite uuid="{5e121e32-9d3a-4af6-9070-a56fb1b6c619}"/> + </folder> + <folder name="华中"> + <addsite uuid="{c7f5aace-daf7-494c-8a61-37d2f9ae82cc}"/> + <addsite uuid="{486f5d02-58d7-4696-a468-950b4b7861cf}"/> + <addsite uuid="{5459de07-c271-410e-ac51-484c2e0c49af}"/> + <addsite uuid="{0fd06e64-1c93-497f-becd-6654a82e9028}"/> + </folder> + <folder name="西南"> + <addsite uuid="{41706018-e660-44b0-8523-58544eb14e3a}"/> + <addsite uuid="{7c158119-2887-4035-8590-c86b3ad0d85a}"/> + </folder> + <folder name="华南"> + <addsite uuid="{852db65f-9f37-49c3-9573-e646eeaaf4ce}"/> + <addsite uuid="{0bab6da1-abc3-4889-a1ad-1884c6395147}"/> + <addsite uuid="{ef858043-4d18-42f1-a01d-5d73f33bbf30}"/> + <addsite uuid="{d4dcdc7b-91bc-4fad-808f-133ff88dceb1}"/> + </folder> + <folder name="其他"> + <addsite uuid="{3b0d01a5-9c04-47e2-b0a0-4dcadd7b1bdc}"/> + <addsite uuid="{11a7b700-3a10-47bf-b83a-47f101086e1a}"/> + <addsite uuid="{bc574211-bedf-40d5-ae97-511416b4e6cf}"/> + <addsite uuid="{ebcff8a3-37ef-48f9-9151-6c3392ed46c4}"/> + </folder> </folder> <folder name="TWBBS"> <addsite uuid="{d09da73f-3c95-42e6-b6bf-6d68ea5c9c48}"/> @@ -23,23 +70,53 @@ <addsite uuid="{618473aa-abf0-4b9a-8d03-3c46bfcc0acb}"/> </folder> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{00000000-0000-0000-0000-000000000000}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newsmth.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="0" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="NEWSMTH" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="1" uuid="{3b0d01a5-9c04-47e2-b0a0-4dcadd7b1bdc}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newsmth.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="1" name="水木清华" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{a24ae09d-4790-45a3-84a2-1e7d1e8801cc}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.mitbbs.com" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="Unknown Space" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{04494339-9b78-43e2-b5d5-6732c59aa645}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="www.mitbbs.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="Unknown Space(alternative)" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{99eef812-97db-483d-9bdd-46905859dfa1}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.pku.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="北大未名站" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{da3dc7b5-320d-48cb-96cd-eed3715b3bd3}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.sjtu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="饮水思源" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{6477e58a-a02b-4087-9ab6-3476aa6ca738}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.whnet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="白云黄鹤" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{53785aed-3e58-488d-940a-56d627844769}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.gznet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="华南木棉" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{57fa7f71-ed5e-4c83-98c4-e65ed1d7c573}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.xanet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="兵马俑" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{05317536-7bb3-4049-8668-e58a9ca10554}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.bupt.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="真情流露" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{927ce3e1-0805-4480-97d6-5ec0d623189c}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.fudan.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="日月光华" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{3d830668-67bc-4762-8a40-403e34d92cfe}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.zsu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="逸仙时空" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{ebcff8a3-37ef-48f9-9151-6c3392ed46c4}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newytht.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="一塌糊涂" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{99377d01-60ed-4e3c-b489-c6cc15eb1920}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="zixia.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="大话西游" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="2000" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{fe512d68-ba26-4904-b933-5f87fd07d765}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="zixia.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="月光宝盒" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{3cdd096c-f8d4-46df-b733-88fe8701d9b3}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.dlut.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="碧海青天" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="1" uuid="{3b0d01a5-9c04-47e2-b0a0-4dcadd7b1bdc}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newsmth.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="水木社区" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{99eef812-97db-483d-9bdd-46905859dfa1}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="wusetu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="五色土" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{05317536-7bb3-4049-8668-e58a9ca10554}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newbupt.org" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="新真情" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{ebcff8a3-37ef-48f9-9151-6c3392ed46c4}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="xinhutu.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="新糊涂" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{3cdd096c-f8d4-46df-b733-88fe8701d9b3}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.hit.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="紫丁香" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{618473aa-abf0-4b9a-8d03-3c46bfcc0acb}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="ptt3.cc" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="批踢踢叁" user=""/> - <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{26afd6ef-947a-48fa-9e77-34880bbf1f3f}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="wretch.csie.nctu.edu.tw" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="无名小站" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{d09da73f-3c95-42e6-b6bf-6d68ea5c9c48}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="ptt.cc" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="批踢踢实业坊" user=""/> <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{fa783de9-9513-49fb-af04-b35d44a5e738}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="ptt2.cc" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="批踢踢兔" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{d063e2ff-84b5-457f-a0f9-2c6ed3e3b108}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.sxu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="亦狐BBS" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{c722a1e1-84ef-4859-a54f-e38bed0fc080}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.gucas.ac.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="科苑星空" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{4716cffa-f163-4a85-a591-a3aa0a91a062}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="smth.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="水木清华" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{756afb2d-4cfe-4315-9dcf-8d44286c0d97}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.pku.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="北大未名站" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{aecb8f56-cdc7-4f0c-90bf-9232f3484efd}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.ruc.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="天地人大" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{f6ad0bc4-dcf8-462e-94f6-9b8b3f0b94d5}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.tju.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="天大求实" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{44545ca9-3c85-4975-a8dd-d0aae516cb4c}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.uibe.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="小天鹅" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{c58116bb-2190-41f2-9690-76240c808527}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.ustb.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="幻想空间" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{bf3d1f0b-e347-4c6f-91c9-e7986c1cfd0f}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.bjtu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="红果园" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{45e2e70b-6c55-4367-9d8b-29b36a22adae}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.buaa.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="未来花园" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{61d73a7d-a067-4a18-9715-4dec3ed2f789}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.nankai.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="我爱南开" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{4df9ecae-c7b8-4ca6-9b95-3c31ef5c19a4}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.hbu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="燕赵BBS" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{56632feb-e42c-4588-bb3a-c19f2f429515}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.sjtu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="饮水思源" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{64e16327-52cc-4d0d-a9ed-ce1df6aa8b89}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.tongji.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="同舟共济" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{204afeb3-c66b-4ba3-b195-8b888d0e2537}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.zju.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="海纳百川" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{e352b1be-21b0-447f-8962-1cb52dda323a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.nju.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="小百合" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{eeb1dd5c-d82d-4a97-8579-858ac840c7f8}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.seu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="虎踞龙蟠" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{c863fb3d-46b6-42d1-a797-970e7013942b}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.sdu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="泉韵心声" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{63823cb5-b087-4035-8cd4-46acf5aaada8}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.njupt.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="紫金飞鸿" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{d79f33ef-0d4d-45a1-8bdc-1815a23512cf}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.ustc.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="瀚海星云" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{5e121e32-9d3a-4af6-9070-a56fb1b6c619}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.xmu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="鼓浪听涛" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{ef858043-4d18-42f1-a01d-5d73f33bbf30}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.szu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="荔园晨风" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{d4dcdc7b-91bc-4fad-808f-133ff88dceb1}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.sysu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="逸仙时空" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{0bab6da1-abc3-4889-a1ad-1884c6395147}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.jnu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="暨南园" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{41706018-e660-44b0-8523-58544eb14e3a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.cqupt.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="幽幽黄桷兰" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{7c158119-2887-4035-8590-c86b3ad0d85a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.scu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="蓝色星空" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{852db65f-9f37-49c3-9573-e646eeaaf4ce}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.gznet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="木棉站" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{0fd06e64-1c93-497f-becd-6654a82e9028}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.cug.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="侏罗纪" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{c7f5aace-daf7-494c-8a61-37d2f9ae82cc}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.whnet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="白云黄鹤" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{486f5d02-58d7-4696-a468-950b4b7861cf}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.whu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="珞珈山水" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{5459de07-c271-410e-ac51-484c2e0c49af}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.csu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="云麓园" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{3317f58f-48eb-42a0-b8f4-5aa2cba99d43}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.lzjtu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="大漠孤烟" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{7e4a2784-f829-42a6-aba0-6eff8f154e1c}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.xjtu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="兵马俑" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{b29b6e08-a865-4b1b-9e3a-35fce1b56a73}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.lzu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="西北望" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{318492c9-9898-44ee-a81c-a6e6655667df}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.dlut.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="碧海青天" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{5f567933-0798-476f-ba35-43947228ba31}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.neu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="白山黑水" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{83174459-86f4-4484-ac19-a60b39194a3c}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.lnu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="天辽地大" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{f9882fa5-65a6-4115-9e61-6cd836e0598a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.jlu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="牡丹园" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{11a7b700-3a10-47bf-b83a-47f101086e1a}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="mitbbs.com " sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="未名空间" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{bc574211-bedf-40d5-ae97-511416b4e6cf}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.zixia.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="大话西游" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{4c892e99-7848-4de0-8550-f10b79b2c5c7}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.ncic.ac.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="曙光站" user=""/> </addresses> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-08-02 06:51:11
|
Revision: 1219 http://qterm.svn.sourceforge.net/qterm/?rev=1219&view=rev Author: sidos Date: 2010-08-02 06:51:05 +0000 (Mon, 02 Aug 2010) Log Message: ----------- xml encoding auto detection Modified Paths: -------------- trunk/qterm-qt4/src/qtermglobal.cpp Modified: trunk/qterm-qt4/src/qtermglobal.cpp =================================================================== --- trunk/qterm-qt4/src/qtermglobal.cpp 2010-07-30 14:13:00 UTC (rev 1218) +++ trunk/qterm-qt4/src/qtermglobal.cpp 2010-08-02 06:51:05 UTC (rev 1219) @@ -114,10 +114,7 @@ QDomDocument doc; QFile file(m_addrXml); if (file.open(QIODevice::ReadOnly)) { - QTextStream in; - in.setCodec("UTF-8"); - in.setDevice(&file); - doc.setContent(in.readAll()); + doc.setContent(&file); file.close(); } return doc; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-30 14:13:10
|
Revision: 1218 http://qterm.svn.sourceforge.net/qterm/?rev=1218&view=rev Author: sidos Date: 2010-07-30 14:13:00 +0000 (Fri, 30 Jul 2010) Log Message: ----------- replace cfg with xml address book Modified Paths: -------------- trunk/qterm-qt4/src/CMakeLists.txt Added Paths: ----------- trunk/qterm-qt4/src/address.xml Modified: trunk/qterm-qt4/src/CMakeLists.txt =================================================================== --- trunk/qterm-qt4/src/CMakeLists.txt 2010-07-30 14:11:10 UTC (rev 1217) +++ trunk/qterm-qt4/src/CMakeLists.txt 2010-07-30 14:13:00 UTC (rev 1218) @@ -182,7 +182,7 @@ ui/toolbardialog.ui ui/zmodemdialog.ui) set(qterm_MISC - address.cfg + address.xml credits qterm.cfg) set(qterm_RCCS Added: trunk/qterm-qt4/src/address.xml =================================================================== --- trunk/qterm-qt4/src/address.xml (rev 0) +++ trunk/qterm-qt4/src/address.xml 2010-07-30 14:13:00 UTC (rev 1218) @@ -0,0 +1,45 @@ +<?xml version='1.0' encoding='UTF-8'?> +<addresses> + <folder name="CERNET"> + <addsite uuid="{3b0d01a5-9c04-47e2-b0a0-4dcadd7b1bdc}"/> + <addsite uuid="{a24ae09d-4790-45a3-84a2-1e7d1e8801cc}"/> + <addsite uuid="{04494339-9b78-43e2-b5d5-6732c59aa645}"/> + <addsite uuid="{99eef812-97db-483d-9bdd-46905859dfa1}"/> + <addsite uuid="{da3dc7b5-320d-48cb-96cd-eed3715b3bd3}"/> + <addsite uuid="{6477e58a-a02b-4087-9ab6-3476aa6ca738}"/> + <addsite uuid="{53785aed-3e58-488d-940a-56d627844769}"/> + <addsite uuid="{57fa7f71-ed5e-4c83-98c4-e65ed1d7c573}"/> + <addsite uuid="{05317536-7bb3-4049-8668-e58a9ca10554}"/> + <addsite uuid="{927ce3e1-0805-4480-97d6-5ec0d623189c}"/> + <addsite uuid="{3d830668-67bc-4762-8a40-403e34d92cfe}"/> + <addsite uuid="{3cdd096c-f8d4-46df-b733-88fe8701d9b3}"/> + <addsite uuid="{ebcff8a3-37ef-48f9-9151-6c3392ed46c4}"/> + <addsite uuid="{99377d01-60ed-4e3c-b489-c6cc15eb1920}"/> + <addsite uuid="{fe512d68-ba26-4904-b933-5f87fd07d765}"/> + </folder> + <folder name="TWBBS"> + <addsite uuid="{d09da73f-3c95-42e6-b6bf-6d68ea5c9c48}"/> + <addsite uuid="{fa783de9-9513-49fb-af04-b35d44a5e738}"/> + <addsite uuid="{618473aa-abf0-4b9a-8d03-3c46bfcc0acb}"/> + </folder> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{00000000-0000-0000-0000-000000000000}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newsmth.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="0" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="NEWSMTH" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="1" uuid="{3b0d01a5-9c04-47e2-b0a0-4dcadd7b1bdc}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newsmth.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="1" name="水木清华" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{a24ae09d-4790-45a3-84a2-1e7d1e8801cc}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.mitbbs.com" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="Unknown Space" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{04494339-9b78-43e2-b5d5-6732c59aa645}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="www.mitbbs.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="Unknown Space(alternative)" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{99eef812-97db-483d-9bdd-46905859dfa1}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.pku.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="北大未名站" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{da3dc7b5-320d-48cb-96cd-eed3715b3bd3}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.sjtu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="饮水思源" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{6477e58a-a02b-4087-9ab6-3476aa6ca738}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.whnet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="白云黄鹤" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{53785aed-3e58-488d-940a-56d627844769}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.gznet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="华南木棉" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{57fa7f71-ed5e-4c83-98c4-e65ed1d7c573}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.xanet.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="兵马俑" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{05317536-7bb3-4049-8668-e58a9ca10554}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.bupt.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="真情流露" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{927ce3e1-0805-4480-97d6-5ec0d623189c}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.fudan.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="日月光华" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{3d830668-67bc-4762-8a40-403e34d92cfe}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.zsu.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="逸仙时空" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{ebcff8a3-37ef-48f9-9151-6c3392ed46c4}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="newytht.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="一塌糊涂" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{99377d01-60ed-4e3c-b489-c6cc15eb1920}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="zixia.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="大话西游" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="2000" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{fe512d68-ba26-4904-b933-5f87fd07d765}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="zixia.net" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="月光宝盒" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004084" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" favor="0" uuid="{3cdd096c-f8d4-46df-b733-88fe8701d9b3}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="bbs.dlut.edu.cn" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="碧海青天" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{618473aa-abf0-4b9a-8d03-3c46bfcc0acb}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="ptt3.cc" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="批踢踢叁" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{26afd6ef-947a-48fa-9e77-34880bbf1f3f}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="wretch.csie.nctu.edu.tw" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="无名小站" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{d09da73f-3c95-42e6-b6bf-6d68ea5c9c48}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="ptt.cc" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="批踢踢实业坊" user=""/> + <site schemefile="" keyboardprofile="" displaycode="0" proxyuser="" ansicolor="true" hosttype="0" alwayshighlight="false" antiidlestring="^@" termtype="vt102" menucolor="#004184" port="23" column="80" generalfont="Monospace" scriptfile="" scroll="240" replykey="" sshuser="" uuid="{fa783de9-9513-49fb-af04-b35d44a5e738}" prelogin="" asciifont="Monospace" menutype="2" interval="2" bbscode="" fontsize="14" password="" escape="^[^[[" autofont="true" proxyauth="false" proxytype="0" autoreply="" postlogin="" addr="ptt2.cc" sshpassword="" proxyport="0" retrytimes="-1" proxypassword="" reconnect="false" bautoreply="true" maxidle="180" proxyaddr="" cursor="0" proxyhost="" loadscript="false" keytype="0" row="24" autologin="false" protocol="0" name="批踢踢兔" user=""/> +</addresses> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-30 14:11:16
|
Revision: 1217 http://qterm.svn.sourceforge.net/qterm/?rev=1217&view=rev Author: sidos Date: 2010-07-30 14:11:10 +0000 (Fri, 30 Jul 2010) Log Message: ----------- fine tuning address dialog Modified Paths: -------------- trunk/qterm-qt4/src/addrdialog.cpp trunk/qterm-qt4/src/addrdialog.h trunk/qterm-qt4/src/dommodel.cpp trunk/qterm-qt4/src/qtermwindow.cpp Modified: trunk/qterm-qt4/src/addrdialog.cpp =================================================================== --- trunk/qterm-qt4/src/addrdialog.cpp 2010-07-30 09:05:54 UTC (rev 1216) +++ trunk/qterm-qt4/src/addrdialog.cpp 2010-07-30 14:11:10 UTC (rev 1217) @@ -67,16 +67,12 @@ setMaximumSize(QSize(800, 600)); setWindowTitle(tr("AddressBook")); - QDomDocument doc = Global::instance()->addrXml(); - domModel = new DomModel(doc); - ui.nameTreeView->setModel(domModel); + QDomDocument doc = Global::instance()->addrXml(); + domModel = new DomModel(doc); + ui.nameTreeView->setModel(domModel); - QMap<QString, QString> listFavorite = Global::instance()->loadFavoriteList(doc); - if (listFavorite.count() > 0) { - //Global::instance()->loadAddress(doc, listFavorite.keys().at(0), param); - ui.nameTreeView->setCurrentIndex(domModel->index(0,0,domModel->index(0,0))); - } else // the default - Global::instance()->loadAddress(doc, QUuid().toString(), param); + // load the default + Global::instance()->loadAddress(doc, QUuid().toString(), param); updateData(false); ui.nameTreeView->setFocus(Qt::OtherFocusReason); } @@ -175,10 +171,10 @@ void addrDialog::onNamechange(const QModelIndex & index) { - if (domModel->type(index) == DomModel::Folder) + if (domModel->type(index) == DomModel::Folder) return; - if (isChanged()) { + if (lastIndex.isValid() && isChanged()) { QMessageBox mb("QTerm", tr("Setting changed, do you want to save?"), QMessageBox::Warning, @@ -220,7 +216,7 @@ } void addrDialog::onConnect(const QModelIndex & index) { - if (domModel->type(index) == DomModel::Folder) + if (domModel->type(index) == DomModel::Folder) return; if (isChanged()) { @@ -355,8 +351,8 @@ { return(param.m_mapParam["name"].toString() != ui.nameLineEdit->text() || param.m_mapParam["addr"].toString() != ui.addrLineEdit->text() || - param.m_mapParam["port"].toInt() != ui.portSpinBox->value() || - param.m_mapParam["hosttype"].toInt() != ui.hostTypeComboBox->currentIndex() || + param.m_mapParam["port"].toInt() != ui.portSpinBox->value() || + param.m_mapParam["hosttype"].toInt() != ui.hostTypeComboBox->currentIndex() || param.m_mapParam["autologin"].toBool() != ui.autoLoginCheckBox->isChecked() || param.m_mapParam["prelogin"].toString() != ui.preloginLineEdit->text() || param.m_mapParam["user"].toString() != ui.userLineEdit->text() || @@ -388,7 +384,7 @@ param.m_mapParam["maxidle"].toInt() != ui.idletimeLineEdit->text().toInt() || param.m_mapParam["antiidlestring"].toString() != ui.antiLineEdit->text() || param.m_mapParam["replykey"].toString() != ui.replykeyLineEdit->text() || - param.m_mapParam["autoreply"].toString() != ui.replyLineEdit->text()) || + param.m_mapParam["autoreply"].toString() != ui.replyLineEdit->text() || param.m_mapParam["bautoreply"].toBool() != ui.replyCheckBox->isChecked() || param.m_mapParam["reconnect"].toBool() != ui.reconnectCheckBox->isChecked() || param.m_mapParam["interval"].toInt() != ui.reconnectLineEdit->text().toInt() || @@ -396,7 +392,7 @@ param.m_mapParam["loadscript"].toBool() != ui.scriptCheckBox->isChecked() || param.m_mapParam["scriptfile"].toString() != ui.scriptLineEdit->text() || param.m_mapParam["menutype"].toInt() != ui.menuTypeComboBox->currentIndex() || - param.m_mapParam["menucolor"] != clrMenu; + param.m_mapParam["menucolor"] != clrMenu); } @@ -470,10 +466,13 @@ ui.autofontCheckBox->setChecked(param.m_mapParam["autofont"].toBool()); ui.highlightCheckBox->setChecked(param.m_mapParam["alwayshighlight"].toBool()); ui.ansicolorCheckBox->setChecked(param.m_mapParam["ansicolor"].toBool()); + // We take whatever the matched font name strASCIIFontName = param.m_mapParam["asciifont"].toString(); ui.asciiFontComboBox->setCurrentFont(QFont(strASCIIFontName)); + param.m_mapParam["asciifont"] = strASCIIFontName; strGeneralFontName = param.m_mapParam["generalfont"].toString(); ui.generalFontComboBox->setCurrentFont(QFont(strGeneralFontName)); + param.m_mapParam["generalfont"] = strGeneralFontName; nFontSize = param.m_mapParam["fontsize"].toInt(); ui.fontSizeSpinBox->setValue(nFontSize); strSchemeFile = param.m_mapParam["schemefile"].toString(); Modified: trunk/qterm-qt4/src/addrdialog.h =================================================================== --- trunk/qterm-qt4/src/addrdialog.h 2010-07-30 09:05:54 UTC (rev 1216) +++ trunk/qterm-qt4/src/addrdialog.h 2010-07-30 14:11:10 UTC (rev 1217) @@ -32,7 +32,7 @@ protected slots: void onNamechange(const QModelIndex & index); void onApply(); - void onConnect(const QModelIndex & index); + void onConnect(const QModelIndex & index = QModelIndex()); void onClose(); void onReset(); void onConfigScheme(); Modified: trunk/qterm-qt4/src/dommodel.cpp =================================================================== --- trunk/qterm-qt4/src/dommodel.cpp 2010-07-30 09:05:54 UTC (rev 1216) +++ trunk/qterm-qt4/src/dommodel.cpp 2010-07-30 14:11:10 UTC (rev 1217) @@ -463,7 +463,7 @@ QString newUuid = QUuid::createUuid().toString(); // Clone current site or default site QString uuid; - if (type(index) == Site) + if (type(index) == Site || type(index) == Favorite) uuid = data(index, Qt::UserRole).toString(); else uuid = QUuid().toString(); @@ -506,20 +506,20 @@ } else { QString uuid = data(index, Qt::UserRole).toString(); - QDomNodeList nodeList; - // remove the actual site - nodeList = domDocument.elementsByTagName("site"); - for (int i=0; i<nodeList.count(); i++) { - QDomElement node = nodeList.at(i).toElement(); - if (uuid == node.attribute("uuid")) { - domDocument.removeChild(node); - } - } - // and its reference in folder + QDomNodeList nodeList; + // remove the actual site + nodeList = domDocument.documentElement().elementsByTagName("site"); + for (int i=0; i<nodeList.count(); i++) { + QDomElement node = nodeList.at(i).toElement(); + if (uuid == node.attribute("uuid")) { + domDocument.documentElement().removeChild(node); + } + } + // and its reference in folder removeRows(index.row(), 1, index.parent()); } } } //namespace QTerm -#include <dommodel.moc> +#include <dommodel.moc> Modified: trunk/qterm-qt4/src/qtermwindow.cpp =================================================================== --- trunk/qterm-qt4/src/qtermwindow.cpp 2010-07-30 09:05:54 UTC (rev 1216) +++ trunk/qterm-qt4/src/qtermwindow.cpp 2010-07-30 14:11:10 UTC (rev 1217) @@ -1257,9 +1257,11 @@ if (set.exec() == 1) { m_param = set.param; - QDomDocument doc = Global::instance()->addrXml(); - Global::instance()->saveAddress(doc,m_strUuid, m_param); - Global::instance()->saveAddressXml(doc); + if (!m_strUuid.isEmpty()) { + QDomDocument doc = Global::instance()->addrXml(); + Global::instance()->saveAddress(doc,m_strUuid, m_param); + Global::instance()->saveAddressXml(doc); + } } else { m_param = backup; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-30 09:06:00
|
Revision: 1216 http://qterm.svn.sourceforge.net/qterm/?rev=1216&view=rev Author: sidos Date: 2010-07-30 09:05:54 +0000 (Fri, 30 Jul 2010) Log Message: ----------- create new xml doc if pathLib address.xml does not exist Modified Paths: -------------- trunk/qterm-qt4/src/qtermglobal.cpp Modified: trunk/qterm-qt4/src/qtermglobal.cpp =================================================================== --- trunk/qterm-qt4/src/qtermglobal.cpp 2010-07-30 06:46:35 UTC (rev 1215) +++ trunk/qterm-qt4/src/qtermglobal.cpp 2010-07-30 09:05:54 UTC (rev 1216) @@ -315,32 +315,28 @@ if (!dir.exists(m_addrCfg)) return createLocalFile(m_addrXml, m_pathLib + "address.xml"); } - // import xml address book + // try import xml address book QDomDocument doc; + QDomElement addresses; QFile file(m_addrXml); - if (!file.open(QIODevice::ReadOnly)) - return false; - if (!doc.setContent(&file)) { - file.close(); - return false; - } - file.close(); + if (file.open(QIODevice::ReadOnly) && doc.setContent(&file)) { + addresses = doc.documentElement(); + } else { + QDomProcessingInstruction instr = + doc.createProcessingInstruction("xml","version=\"1.0\" encoding=\"UTF-8\""); + doc.appendChild(instr); + addresses = doc.createElement("addresses"); + doc.appendChild(addresses); + } // Combine cfg address book m_address = new Config(m_addrCfg); int num = m_address->getItemValue("bbs list", "num").toInt(); - //QDomProcessingInstruction instr = - // doc.createProcessingInstruction("xml","version=\"1.0\" encoding=\"UTF-8\""); - //doc.appendChild(instr); - //QDomElement addresses = doc.createElement("addresses"); - //doc.appendChild(addresses); - - QDomElement addresses = doc.documentElement(); - QDomElement imported = doc.createElement("folder"); imported.setAttribute("name", tr("imported sites")); + addresses.insertBefore(imported, QDomNode()); for (int i = -1; i < num; i++) { Param param; @@ -361,14 +357,14 @@ addresses.appendChild(site); } - QFile ofile(m_addrXml); - if (!ofile.open(QIODevice::WriteOnly)) - return false; - QByteArray xml = doc.toByteArray(); - QTextStream stream(&ofile); - stream << xml; - ofile.close(); - +// QFile ofile(m_addrXml); +// if (!ofile.open(QIODevice::WriteOnly)) +// return false; +// QByteArray xml = doc.toByteArray(); +// QTextStream stream(&ofile); +// stream << xml; +// ofile.close(); + saveAddressXml(doc); delete m_address; return true; } @@ -559,12 +555,13 @@ m_fileCfg = m_pathCfg + "qterm.cfg"; if (!createLocalFile(m_fileCfg, m_pathLib + "qterm.cfg")) return false; - //m_addrCfg = m_pathCfg + "address.cfg"; + m_addrCfg = m_pathCfg + "address.cfg"; //if (!createLocalFile(m_addrCfg, m_pathLib + "address.cfg")) // return false; m_addrXml = m_pathCfg + "address.xml"; //if (!createLocalFile(m_addrXml, m_pathLib + "address.xml")) // return false; + if (!convertAddressBook2XML()) return false; return true; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-30 06:46:46
|
Revision: 1215 http://qterm.svn.sourceforge.net/qterm/?rev=1215&view=rev Author: sidos Date: 2010-07-30 06:46:35 +0000 (Fri, 30 Jul 2010) Log Message: ----------- fix gcc compiler error Modified Paths: -------------- trunk/qterm-qt4/src/dommodel.cpp trunk/qterm-qt4/src/dommodel.h Modified: trunk/qterm-qt4/src/dommodel.cpp =================================================================== --- trunk/qterm-qt4/src/dommodel.cpp 2010-07-30 06:06:55 UTC (rev 1214) +++ trunk/qterm-qt4/src/dommodel.cpp 2010-07-30 06:46:35 UTC (rev 1215) @@ -11,7 +11,7 @@ namespace QTerm { -DomItem::DomItem(QDomElement &element, DomItem *parent) +DomItem::DomItem(QDomElement element, DomItem *parent) { domElement = element; parentItem = parent; Modified: trunk/qterm-qt4/src/dommodel.h =================================================================== --- trunk/qterm-qt4/src/dommodel.h 2010-07-30 06:06:55 UTC (rev 1214) +++ trunk/qterm-qt4/src/dommodel.h 2010-07-30 06:46:35 UTC (rev 1215) @@ -13,7 +13,7 @@ class DomItem { public: - DomItem(QDomElement &element, DomItem *parent = 0); + DomItem(QDomElement element, DomItem *parent = 0); ~DomItem(); DomItem *child(int i); void insertChild(int i, DomItem *item); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-30 06:07:01
|
Revision: 1214 http://qterm.svn.sourceforge.net/qterm/?rev=1214&view=rev Author: sidos Date: 2010-07-30 06:06:55 +0000 (Fri, 30 Jul 2010) Log Message: ----------- GCC compatible null pointer is NULL not 0 Modified Paths: -------------- trunk/qterm-qt4/src/dommodel.cpp Modified: trunk/qterm-qt4/src/dommodel.cpp =================================================================== --- trunk/qterm-qt4/src/dommodel.cpp 2010-07-30 01:14:58 UTC (rev 1213) +++ trunk/qterm-qt4/src/dommodel.cpp 2010-07-30 06:06:55 UTC (rev 1214) @@ -139,7 +139,7 @@ DomModel::DomModel(QDomDocument document, QObject *parent) : QAbstractItemModel(parent), domDocument(document) { - rootItem = new DomItem(document.documentElement(), 0); + rootItem = new DomItem(document.documentElement()); } DomModel::~DomModel() @@ -386,7 +386,7 @@ for (int i=0; i<count; i++) { DomItem *item = newItems.at(i); QDomElement node = item->element().cloneNode().toElement(); - DomItem *newItem = new DomItem(node, 0); + DomItem *newItem = new DomItem(node); insertRow(beginRow, parent, newItem); } break; @@ -437,7 +437,7 @@ QDomElement folder = domDocument.createElement("folder"); folder.setAttribute("name", "New Folder"); // Create and insert - DomItem *item = new DomItem(folder, 0); + DomItem *item = new DomItem(folder); insertRow(row, parentIndex, item); } @@ -491,7 +491,7 @@ parentIndex = index.parent(); row = index.row(); } - DomItem *item = new DomItem(newSiteRef, 0); + DomItem *item = new DomItem(newSiteRef); insertRow(row, parentIndex, item); } @@ -522,4 +522,4 @@ } //namespace QTerm -#include <dommodel.moc> \ No newline at end of file +#include <dommodel.moc> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hep...@us...> - 2010-07-30 01:15:05
|
Revision: 1213 http://qterm.svn.sourceforge.net/qterm/?rev=1213&view=rev Author: hephooey Date: 2010-07-30 01:14:58 +0000 (Fri, 30 Jul 2010) Log Message: ----------- Convert to string explicitly Modified Paths: -------------- trunk/qterm-qt4/src/qtermglobal.cpp Modified: trunk/qterm-qt4/src/qtermglobal.cpp =================================================================== --- trunk/qterm-qt4/src/qtermglobal.cpp 2010-07-30 01:09:27 UTC (rev 1212) +++ trunk/qterm-qt4/src/qtermglobal.cpp 2010-07-30 01:14:58 UTC (rev 1213) @@ -209,8 +209,8 @@ if (key == "password" && m_wallet != NULL) { m_wallet->open(); param.m_mapParam["password"] = m_wallet->readPassword( - param.m_mapParam["name"], - param.m_mapParam["user"]); + param.m_mapParam["name"].toString(), + param.m_mapParam["user"].toString()); } else #endif // KWALLET_ENABLED param.m_mapParam[key] = m_address->getItemValue(strSection,key); @@ -232,9 +232,9 @@ if (key == "password" && m_wallet != NULL) { m_wallet->open(); m_wallet->writePassword( - param.m_mapParam["name"], - param.m_mapParam["user"], - param.m_mapParam["password"]); + param.m_mapParam["name"].toString(), + param.m_mapParam["user"].toString(), + param.m_mapParam["password"].toString()); } else #endif m_address->setItemValue(strSection, key, param.m_mapParam[key]); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hep...@us...> - 2010-07-30 01:09:33
|
Revision: 1212 http://qterm.svn.sourceforge.net/qterm/?rev=1212&view=rev Author: hephooey Date: 2010-07-30 01:09:27 +0000 (Fri, 30 Jul 2010) Log Message: ----------- Trim the string before display it, it seems whitespace contribute negative width to the whole string, maybe a bug in Qt, but I think the idea is in general ok. Modified Paths: -------------- trunk/qterm-qt4/src/osdmessage.cpp Modified: trunk/qterm-qt4/src/osdmessage.cpp =================================================================== --- trunk/qterm-qt4/src/osdmessage.cpp 2010-07-30 01:09:22 UTC (rev 1211) +++ trunk/qterm-qt4/src/osdmessage.cpp 2010-07-30 01:09:27 UTC (rev 1212) @@ -67,20 +67,20 @@ } */ // determine text rectangle - if (!isHidden() && message == m_message) { + if (!isHidden() && message.trimmed() == m_message) { m_timer->setSingleShot(true); m_timer->start(durationMs); return; } - m_message = message; + m_message = message.trimmed(); m_type = type; - QRect textRect = fontMetrics().boundingRect(message); + QRect textRect = fontMetrics().boundingRect(m_message); textRect.translate(-textRect.left(), -textRect.top()); textRect.adjust(0, 0, 2, 2); int width = textRect.width(), height = fontMetrics().ascent()+fontMetrics().descent(), textXOffset = 0, - shadowOffset = message.isRightToLeft() ? -1 : 1; + shadowOffset = m_message.isRightToLeft() ? -1 : 1; // load icon (if set) and update geometry // [QTerm], we don't have a icon at this time. @@ -135,9 +135,9 @@ // draw shadow and text int yText = (geometry.height() - height)/2 + fontMetrics().ascent(); bufferPainter.setPen(palette().color(QPalette::Window).dark(115)); - bufferPainter.drawText(5 + textXOffset + shadowOffset, yText + 1, message); + bufferPainter.drawText(5 + textXOffset + shadowOffset, yText + 1, m_message); bufferPainter.setPen(palette().color(QPalette::WindowText)); - bufferPainter.drawText(5 + textXOffset, yText, message); + bufferPainter.drawText(5 + textXOffset, yText, m_message); // show widget and schedule a repaint show(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <hep...@us...> - 2010-07-30 01:09:28
|
Revision: 1211 http://qterm.svn.sourceforge.net/qterm/?rev=1211&view=rev Author: hephooey Date: 2010-07-30 01:09:22 +0000 (Fri, 30 Jul 2010) Log Message: ----------- Fix the garbage in some ip location. It seems the size of the raw string does not match the size of the latin1 string converted back from the unicode string. Modified Paths: -------------- trunk/qterm-qt4/src/qtermiplocation.cpp Modified: trunk/qterm-qt4/src/qtermiplocation.cpp =================================================================== --- trunk/qterm-qt4/src/qtermiplocation.cpp 2010-07-29 19:36:46 UTC (rev 1210) +++ trunk/qterm-qt4/src/qtermiplocation.cpp 2010-07-30 01:09:22 UTC (rev 1211) @@ -98,13 +98,14 @@ return -1; } ret_str = m_codec->toUnicode(str); - return(ret_str.length()); + return strlen(str); } uint32 IPLocation::getString(FILE *fp, uint32 offset, uint32 lastoffset, QString& ret, unsigned int flag) { char *buf; unsigned int fg; + int len; if (fp == NULL) return 0; buf = (char *) calloc(3, sizeof(char)); readFrom(fp, offset, buf , 1); @@ -113,12 +114,12 @@ readFrom(fp, offset + 1, buf, 3); return getString(fp, byteArrayToInt(buf, 3), offset, ret, fg); } else { - readLineFrom(fp, offset, ret); + len = readLineFrom(fp, offset, ret); } switch (flag) { case 0x01: return 0; case 0x02: return lastoffset + 4; - default: return offset + strlen(ret.toLatin1()) + 1; + default: return offset + len + 1; }// switch } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-29 19:36:52
|
Revision: 1210 http://qterm.svn.sourceforge.net/qterm/?rev=1210&view=rev Author: sidos Date: 2010-07-29 19:36:46 +0000 (Thu, 29 Jul 2010) Log Message: ----------- missing icon Added Paths: ----------- trunk/qterm-qt4/src/pic/folder.png trunk/qterm-qt4/src/pic/folder_favorite.png Added: trunk/qterm-qt4/src/pic/folder.png =================================================================== (Binary files differ) Property changes on: trunk/qterm-qt4/src/pic/folder.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/qterm-qt4/src/pic/folder_favorite.png =================================================================== (Binary files differ) Property changes on: trunk/qterm-qt4/src/pic/folder_favorite.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <si...@us...> - 2010-07-29 14:50:39
|
Revision: 1209 http://qterm.svn.sourceforge.net/qterm/?rev=1209&view=rev Author: sidos Date: 2010-07-29 14:50:33 +0000 (Thu, 29 Jul 2010) Log Message: ----------- buttons are replaced by context menu Modified Paths: -------------- trunk/qterm-qt4/src/addrdialog.cpp trunk/qterm-qt4/src/ui/addrdialog.ui Added Paths: ----------- trunk/qterm-qt4/src/doc/CMakeFiles/ trunk/qterm-qt4/src/po/CMakeFiles/ Modified: trunk/qterm-qt4/src/addrdialog.cpp =================================================================== --- trunk/qterm-qt4/src/addrdialog.cpp 2010-07-29 14:30:19 UTC (rev 1208) +++ trunk/qterm-qt4/src/addrdialog.cpp 2010-07-29 14:50:33 UTC (rev 1209) @@ -50,9 +50,6 @@ if (bPartial) { ui.nameTreeView->hide(); ui.Line->hide(); - ui.addSitePushButton->hide(); - ui.addFolderPushButton->hide(); - ui.deletePushButton->hide(); ui.connectPushButton->hide(); ui.closePushButton->setText(tr("Cancel")); ui.applyPushButton->setText(tr("OK")); @@ -335,9 +332,6 @@ connect(ui.nameTreeView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(onConnect(QModelIndex))); connect(ui.nameTreeView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(onPopupTreeContextMenu(QPoint))); - connect(ui.addFolderPushButton, SIGNAL(clicked()), this, SLOT(onAddFolder())); - connect(ui.addSitePushButton, SIGNAL(clicked()), this, SLOT(onAddSite())); - connect(ui.deletePushButton, SIGNAL(clicked()), this, SLOT(onDelete())); connect(ui.applyPushButton, SIGNAL(clicked()), this, SLOT(onApply())); connect(ui.closePushButton, SIGNAL(clicked()), this, SLOT(onClose())); connect(ui.connectPushButton, SIGNAL(clicked()), this, SLOT(onConnect())); Modified: trunk/qterm-qt4/src/ui/addrdialog.ui =================================================================== --- trunk/qterm-qt4/src/ui/addrdialog.ui 2010-07-29 14:30:19 UTC (rev 1208) +++ trunk/qterm-qt4/src/ui/addrdialog.ui 2010-07-29 14:50:33 UTC (rev 1209) @@ -1689,7 +1689,7 @@ <x>10</x> <y>10</y> <width>201</width> - <height>541</height> + <height>581</height> </rect> </property> <property name="contextMenuPolicy"> @@ -1724,50 +1724,6 @@ <string>Reset</string> </property> </widget> - <widget class="QPushButton" name="deletePushButton"> - <property name="geometry"> - <rect> - <x>150</x> - <y>562</y> - <width>61</width> - <height>31</height> - </rect> - </property> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Delete</string> - </property> - <property name="shortcut"> - <string/> - </property> - <property name="autoDefault"> - <bool>true</bool> - </property> - </widget> - <widget class="QPushButton" name="addSitePushButton"> - <property name="geometry"> - <rect> - <x>12</x> - <y>562</y> - <width>51</width> - <height>31</height> - </rect> - </property> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Add Site</string> - </property> - </widget> <widget class="QPushButton" name="applyPushButton"> <property name="geometry"> <rect> @@ -1822,25 +1778,6 @@ <bool>true</bool> </property> </widget> - <widget class="QPushButton" name="addFolderPushButton"> - <property name="geometry"> - <rect> - <x>70</x> - <y>562</y> - <width>72</width> - <height>31</height> - </rect> - </property> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Add Folder</string> - </property> - </widget> </widget> <layoutdefault spacing="6" margin="11"/> <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> @@ -1896,8 +1833,6 @@ <tabstop>applyPushButton</tabstop> <tabstop>closePushButton</tabstop> <tabstop>resetPushButton</tabstop> - <tabstop>addSitePushButton</tabstop> - <tabstop>deletePushButton</tabstop> </tabstops> <resources/> <connections> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |