mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
FeedReader:
- Added error handling to xml functions - Added xslt transformation - Added retransform of existing messages - Redesigned preview dialog - Enabled embed images for forum feeds - Changed config format, switching back to an older version results in a loss of all data of the FeedReader Added new base class RSPlainTextEdit with placeholder text. New library libxslt needed git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6081 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
919fb3f62d
commit
ef49000b9a
28 changed files with 1549 additions and 849 deletions
|
@ -51,8 +51,8 @@ FORMS = gui/FeedReaderDialog.ui \
|
|||
TARGET = FeedReader
|
||||
|
||||
RESOURCES = gui/FeedReader_images.qrc \
|
||||
lang/FeedReader_lang.qrc
|
||||
|
||||
lang/FeedReader_lang.qrc
|
||||
|
||||
TRANSLATIONS += \
|
||||
lang/FeedReader_cs.ts \
|
||||
lang/FeedReader_da.ts \
|
||||
|
@ -76,17 +76,17 @@ linux-* {
|
|||
|
||||
INCLUDEPATH += $${LIBXML2_DIR}
|
||||
|
||||
LIBS += -lcurl -lxml2
|
||||
LIBS += -lcurl -lxml2 -lxslt
|
||||
}
|
||||
|
||||
win32 {
|
||||
DEFINES += CURL_STATICLIB LIBXML_STATIC
|
||||
DEFINES += CURL_STATICLIB LIBXML_STATIC LIBXSLT_STATIC LIBEXSLT_STATIC
|
||||
|
||||
CURL_DIR = ../../../curl-7.26.0
|
||||
LIBXML2_DIR = ../../../libxml2-2.8.0
|
||||
LIBICONV_DIR = ../../../libiconv-1.14
|
||||
LIBXSLT_DIR = ../../../libxslt-1.1.28
|
||||
|
||||
INCLUDEPATH += $${CURL_DIR}/include $${LIBXML2_DIR}/include $${LIBICONV_DIR}/include
|
||||
INCLUDEPATH += $${CURL_DIR}/include $${LIBXML2_DIR}/include $${LIBXSLT_DIR} $${LIBICONV_DIR}/include
|
||||
|
||||
LIBS += -lcurl -lxml2 -lws2_32 -lwldap32
|
||||
LIBS += -lcurl -lxml2 -lxslt -lws2_32 -lwldap32
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue