Andreas Joseph Krogh
Andreas Joseph Krogh
Hi. First; I'm looking for exactly this so thanks for having written this! I see no new commits have been pushed for the last few years and the issues don't...
Hi. Having this index: ``` create index origo_email_delivery_fts_all_folder_idx ON origo_email_delivery using gin (fts_all, folder_id) ``` And this query: ```sql EXPLAIN ANALYZE SELECT del.entity_id, del.received_timestamp, del.received_timestamp '3000-01-01' :: TIMESTAMP, del.folder_id FROM...
Hi. As Teodor commented on #15 PG will use bitmap scan when having queries like this: ```sql EXPLAIN ANALYZE SELECT del.entity_id, del.received_timestamp, del.received_timestamp '3000-01-01' :: TIMESTAMP, del.folder_id FROM origo_email_delivery del...
I'd like to implement a TransactionalBlobInputStream which takes a BlobInputStream as input and ensures there's an active transaction before calling read() etc., reconnecting and seek()-ing if necessary. Thinking about something...
This PR makes it possible to configure LAPinger.service the same way as LAScheduler.createExecutor
As it is, usage of fixHtmlFunc often results in lift.onEvent() installing eventhandlers on elements which has not yet been inserted into the DOM, resulting in on*-events in AJAX-response not working...
Improve #1162 so we can have an improved and structured fix, ref. https://groups.google.com/d/msg/liftweb/AzemLRepDco/c0dbeNvlcjkJ
Ref this thread: http://groups.google.com/group/liftweb/browse_thread/thread/91e663dd5ccd92f6/d6ef9177210b8e1d It would be nice to be able to have complete control over how menu-items are rendered. Today's Menu.builder is less optimal as it's impossible to generate...
Exception in Requester.stream when response is 304, where response-header doesn't include "location"
Using version 0.7.0 When receiving 304 "not modified" this code throws `NoSuchElementException`: ```scala if (responseCode.toString.startsWith("3") && maxRedirects > 0){ val out = new ByteArrayOutputStream() Util.transferTo(connection.getInputStream, out) val bytes = out.toByteArray...
Mentioned here https://github.com/lift/framework/issues/1955