summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Tidied up XML loader using boost::multi_indexrandomdan2011-02-15
|
* Add debug option for dumping the data document before sending it to the web ↵randomdan2011-02-15
| | | | server
* Commit some changes I'd swear blind I'd done alreadyrandomdan2011-02-15
|
* Merge fileRows and urlRows content parser into a shared based; streamRowsrandomdan2011-02-14
|
* Convert dumpTask into a generic purpose file* writerrandomdan2011-02-14
| | | | Fully implement view support in p2console
* Fixes to compile with all gcc warnings as errorsrandomdan2011-02-14
| | | | | | | | | Fixes to keep uuid impl choice entirely within uuid class Fix to collect all text in xslRows Error in unhandled compares Add support for no change check in PQ connector Move dumptask in p2console, soon to be removed Fix variable creation code to set type correctly
* Minor tweaks to improve perforamce on PG bulk deletesrandomdan2011-02-13
| | | | Fixes to support partial merges with bulk updates
* Use a static local var for the loader map to work around the link/load order ↵randomdan2011-02-11
| | | | issue
* Don't rely on crazy dangerous global init/destroy for loader registrationrandomdan2011-02-11
|
* Support for table patching in different ways according to what the connector ↵randomdan2011-02-11
| | | | | | | says Introduce two proper methods of bulk update Tested against PG 8.4, MySQL 5.1 with single and multiple column keys
* Fix free function in xslRows for xmlXPathObjectrandomdan2011-02-11
|
* Less copying and more native storage in fileRowsrandomdan2011-02-11
|
* Add an 'if' component that works with views and iteratorsrandomdan2011-02-10
| | | | | Give some control to the behaviour of unsupported items when loading from XML Make regexcheck's regex a variable
* Rename OdbcVariableBinder, it's not (anymore) ODBC specificrandomdan2011-02-10
| | | | Make rdbmsDataSource's type an int, string was just silly
* Get rid of that stupid LexicalCall and it's messy templates (what WAS I ↵randomdan2011-02-10
| | | | | | thinking?) And replace it with a VariableType that wraps the boost::variant and is implicitly convertable to useful things (may need extending in time)
* Fix silly bug loading readonly RDBMS config entriesrandomdan2011-02-10
| | | | | | | Add centralised logging system Add code for runtime configuration Add support for configuring logging Move all existing logging to new logging system
* Make different DB connectors optionalrandomdan2011-02-09
|
* Fix the build system to do dependencies properlyrandomdan2011-02-09
| | | | | | | | Break down libodbcpp into a set of base classes; libdbpp Add a native PostgreSQL implementation of libdbpp; libpqpp Extend project2 rdbms stuff to work with generic connectors Update datasources to specify connector type Build libmisc as .so
* Fix crash caused by taking reference of temp VariableTyperandomdan2011-02-04
|
* Add concept of runtime configuration, set by HTTP hostname or environment ↵randomdan2011-02-04
| | | | | | variable depending on engine Use it in ArtfulSeller, although there is currently only one platform
* Don't construct the dir end iterator every iterationrandomdan2011-02-03
|
* Add missing conversion in generic visitorrandomdan2011-02-03
| | | | | | | | | Whole new improved variable system (does drop VariableParse, no longer required) Add option to count, but not include, blank lines in proc and file rows File file rows to open files, not execute them Fix to ODBC API with strings that don't use the whole buffer XML changes to site to use new variable system Changes to GB importer to use FS rows and new SQL merge now that it's a) tested and b) variable parse has gone
* Change FsRows to return a ptime for moddaterandomdan2011-02-02
|
* Remove compose functions on column data and add a handle function for type ↵randomdan2011-02-02
| | | | | | | safe data passing Use new handle function to get type safe data from ODBC Add a datetime option to variables
* Add lots of funky stuff to make the system (internally) type saferandomdan2011-02-01
|
* Call curl global cleanup when finishedrandomdan2011-01-31
| | | | | | Don't bind filters on load complete, there might be multiple different users Add XSL rows Fix several problems with dump (bin me, console app should support views)
* Only trim newline from lines that end with newlinerandomdan2011-01-25
|
* Fix #if check for UUID implementationrandomdan2011-01-25
|
* Fix Presenter's inheritance of CommonObjectsrandomdan2011-01-25
| | | | | Use smart pointers to stages, they are refcounted after all Have variables keep a handle to their row sources, fixes crash during stage destruction
* Centralise the ICE splicerrandomdan2011-01-24
|
* Tidy up the UUID optionalsrandomdan2011-01-23
|
* Add wrappers and Jam for building with UUIDs from OSSP instead of Boostrandomdan2011-01-21
|
* Remove file create date for not being the create daterandomdan2010-12-29
| | | | Add option for keeping the blank lines in file rows
* Fix row numbering in rowSets to behave as before (1 upwards, not 0 upwards)randomdan2010-12-29
|
* Install the new variants of CGIrandomdan2010-12-22
|
* Split the plain CGI and the FastCGI variants into separate programs with a ↵randomdan2010-12-22
| | | | now identical shared core implementation
* Add missing execute on custom SQL merge inserterrandomdan2010-12-21
| | | | | | | | Remove no longer needed second constructor on variables Tidy up variable parent construction and use of attributes Allow row set implementors to extend and add attributes of their own Have attributes return a variant type Add the filesystem rowset for finding files and directories
* Catch Glib::Exceptions which don't inherit from std::exception (grr)randomdan2010-12-21
| | | | | Use cxa_demangle to render the human readable exception class name Have other unhandled exceptions abort an FCGI process, which causes Apache to write a log of it
* Do some renaming and reorganising at lastrandomdan2010-12-18
|
* Remove the stupid _ naming conventionrandomdan2010-12-17
|
* Return HTTP 500 on errorrandomdan2010-12-16
| | | | Use AJAX to track and untrack packages
* Add support for non-default Sql merge inserterrandomdan2010-12-15
| | | | | | | | and row numbers in row sets and functional row properties in variables and custom column sub/super sets in views and isNull by column name Fix somee constnesses
* All new fangled iterators, views, row engines, exceptions, the list goes onrandomdan2010-12-14
| | | | Includes site and console updates to match
* Support binding null to an SQL command parameterrandomdan2010-11-30
| | | | Bind null for missing values for SQL merge data
* Add an iterator and viewer for XML documents capable of processing huge docsrandomdan2010-11-30
| | | | Add a task for dumping out the values of an iteratation
* Tidy up jam stuffrandomdan2010-11-23
|
* Send a plain text part in emailsrandomdan2010-11-22
|
* Tidy up sendmail process ready for sending plain text version toorandomdan2010-11-18
|
* Improve XML usage correctnessrandomdan2010-11-01
|
* Split up libs even morerandomdan2010-10-29
| | | | | Remove need for Boost UUID in p2console needed for XML session management by having app engines handle their own sessions p2web now implements XML sessions by depending on libp2xmlSession