Skip to content

Commit

Permalink
Remove support for QtScript (closes #44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Aug 12, 2015
1 parent 9f2356c commit 725f381
Show file tree
Hide file tree
Showing 20 changed files with 10 additions and 817 deletions.
1 change: 1 addition & 0 deletions ChangeLog
@@ -1,4 +1,5 @@
QDjango 0.6.0 (UNRELEASED) QDjango 0.6.0 (UNRELEASED)
* Remove support for QtScript.
* Make tests runnable using "make check". * Make tests runnable using "make check".
* Fix build errors on Windows. * Fix build errors on Windows.
* Clarify return values of createTable(s) and dropTable(s). * Clarify return values of createTable(s) and dropTable(s).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -24,7 +24,7 @@ Qt 4 on Debian:


Qt 5 on Debian: Qt 5 on Debian:


sudo apt-get install qtbase5-dev qtscript5-dev sudo apt-get install qtbase5-dev


Qt 4 on Mac OS X: Qt 4 on Mac OS X:


Expand Down Expand Up @@ -61,4 +61,4 @@ Fast forward cursors are used by default. This greatly improves performance, and


- Connection pooling must be enabled in your [ODBC manager](http://www.unixodbc.org/doc/conn_pool.html) - Connection pooling must be enabled in your [ODBC manager](http://www.unixodbc.org/doc/conn_pool.html)
- You must enable Multiple Active Result Sets in the QODBC driver using "MARS_Connection=Yes" in the connection string - You must enable Multiple Active Result Sets in the QODBC driver using "MARS_Connection=Yes" in the connection string
- You must enable connection pooling in the QODBC driver using the "SQL_ATTR_CONNECTION_POOLING" attribute - You must enable connection pooling in the QODBC driver using the "SQL_ATTR_CONNECTION_POOLING" attribute
2 changes: 1 addition & 1 deletion doc/Doxyfile
Expand Up @@ -574,7 +574,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories # directories like "/usr/src/myproject". Separate the files or directories
# with spaces. # with spaces.


INPUT = database.doc http.doc index.doc models.doc queries.doc script.doc ../src/db ../src/http ../src/script INPUT = database.doc http.doc index.doc models.doc queries.doc ../src/db ../src/http


# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
Expand Down
1 change: 0 additions & 1 deletion doc/index.doc
Expand Up @@ -26,5 +26,4 @@


\sa Database \sa Database
\sa Http \sa Http
\sa Script
*/ */
74 changes: 0 additions & 74 deletions doc/script.doc

This file was deleted.

2 changes: 1 addition & 1 deletion examples/examples.pro
@@ -1,2 +1,2 @@
TEMPLATE = subdirs TEMPLATE = subdirs
SUBDIRS = http-server script-console SUBDIRS = http-server
199 changes: 0 additions & 199 deletions examples/script-console/script-console.cpp

This file was deleted.

12 changes: 0 additions & 12 deletions examples/script-console/script-console.pro

This file was deleted.

4 changes: 1 addition & 3 deletions qdjango.pri
Expand Up @@ -11,18 +11,16 @@ isEmpty(QDJANGO_LIBRARY_TYPE) {
} }


# Libraries for apps which use QDjango # Libraries for apps which use QDjango
QDJANGO_INCLUDEPATH = $$PWD/src/db $$PWD/src/http $$PWD/src/script QDJANGO_INCLUDEPATH = $$PWD/src/db $$PWD/src/http
QDJANGO_DB_LIBS = -lqdjango-db QDJANGO_DB_LIBS = -lqdjango-db
QDJANGO_HTTP_LIBS = -lqdjango-http QDJANGO_HTTP_LIBS = -lqdjango-http
QDJANGO_SCRIPT_LIBS = -lqdjango-script
contains(QDJANGO_LIBRARY_TYPE,staticlib) { contains(QDJANGO_LIBRARY_TYPE,staticlib) {
DEFINES += QDJANGO_STATIC DEFINES += QDJANGO_STATIC
} else { } else {
# Windows needs the major library version # Windows needs the major library version
win32 { win32 {
QDJANGO_DB_LIBS = -lqdjango-db0 QDJANGO_DB_LIBS = -lqdjango-db0
QDJANGO_HTTP_LIBS = -lqdjango-http0 QDJANGO_HTTP_LIBS = -lqdjango-http0
QDJANGO_SCRIPT_LIBS = -lqdjango-script0
} }
DEFINES += QDJANGO_SHARED DEFINES += QDJANGO_SHARED
} }
Expand Down

0 comments on commit 725f381

Please sign in to comment.