Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3.2 #1324

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open

V3.2 #1324

wants to merge 31 commits into from

Commits on Mar 19, 2017

  1. Moves special handling of flags to SetFieldType.

    Makes a Blob type in PHP more akin to a Binary type. Text and VarChars are now both Text types in PHP, since PHP really doesn't care how the text is saved in the database.
    spekary committed Mar 19, 2017
    Configuration menu
    Copy the full SHA
    b0a72d0 View commit details
    Browse the repository at this point in the history
  2. Removes the dependency in the database adapter on the query builder. …

    …This is an important step to being able to move the database adapters to their own repository. Also adds a basic unit test for querying cursors.
    spekary committed Mar 19, 2017
    Configuration menu
    Copy the full SHA
    11c833e View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2017

  1. Merge pull request #1218 from spekary/bugfix-BetterBinaryHandling

    bugfix-BinaryType
    spekary committed Mar 23, 2017
    Configuration menu
    Copy the full SHA
    37971e3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1219 from spekary/bugfix-RemoveQueryBuilderDepend…

    …ency
    
    bugfix-RemoveQueryBuilderDependency
    spekary committed Mar 23, 2017
    Configuration menu
    Copy the full SHA
    c95a884 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2017

  1. Configuration menu
    Copy the full SHA
    9afb2d1 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2017

  1. Configuration menu
    Copy the full SHA
    4c3ca55 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2017

  1. Adding OnClick message handler and fixing up some type checking to us…

    …e built-in type checking.
    spekary committed Apr 4, 2017
    Configuration menu
    Copy the full SHA
    6c2eba9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4bc0dd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c233276 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1245 from spekary/feature-OnClick

    feature-OnClick
    spekary committed Apr 4, 2017
    Configuration menu
    Copy the full SHA
    bf3b82e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1247 from spekary/bugfix-ApplicationBaseConstructor

    feature-ApplicationConstructor
    spekary committed Apr 4, 2017
    Configuration menu
    Copy the full SHA
    6d5f5bf View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1248 from spekary/feaure-IsAssociatedObjectByKey

    feature->IsAssociatedByKey
    spekary committed Apr 4, 2017
    Configuration menu
    Copy the full SHA
    ab5c1a8 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2017

  1. Configuration menu
    Copy the full SHA
    bd27356 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1250 from spekary/OnClick-Regression

    bugfix-OnClickRegression
    spekary committed Apr 9, 2017
    Configuration menu
    Copy the full SHA
    6f7f89e View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2017

  1. Configuration menu
    Copy the full SHA
    fe5e3a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2543707 View commit details
    Browse the repository at this point in the history
  3. Typo

    spekary committed Apr 22, 2017
    Configuration menu
    Copy the full SHA
    f87142d View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2017

  1. Removing outdated code

    spekary committed Apr 27, 2017
    Configuration menu
    Copy the full SHA
    23263d6 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2017

  1. Generating jqui 1.12 support

    spekary committed May 2, 2017
    Configuration menu
    Copy the full SHA
    07b3589 View commit details
    Browse the repository at this point in the history
  2. Fixing reference to latest jquery ui. Removing our own build of it, s…

    …o we can just refer to the version online.
    spekary committed May 2, 2017
    Configuration menu
    Copy the full SHA
    4b2b1d7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    586831c View commit details
    Browse the repository at this point in the history

Commits on May 4, 2017

  1. Merge pull request #1256 from spekary/bugfix-reorg

    bugfix-Minor
    spekary committed May 4, 2017
    Configuration menu
    Copy the full SHA
    0868d8d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1260 from spekary/bugfix-jqui1-12

    bugfix-JQueryUi1-12
    spekary committed May 4, 2017
    Configuration menu
    Copy the full SHA
    891029b View commit details
    Browse the repository at this point in the history

Commits on May 17, 2017

  1. InsertOrUpdate now returns the autoincremented ID

    InsertOrUpdate is a great method that is currently only used by the dbsessionhandler. It allows you to remove a query to determine if you want to insert or update because mysql will do this for you. 
    Unfortunately, when you use this method, you didn't get the LAST_INSERT_ID on insert. I added this, plus when there is a duplicate, qcubed will return the id found in the update. 
    
    To simplify the INSERT statement I also used the alternative INSERT syntax. INSERT INTO tablename SET col=val in stead of INSERT INTO tablename (col) values(val)
    
    I'm running dbbackedsessionhandler in production.and it sees no difference between the old and new function. So there shouldn't be an impact on the rest of qcubed.
    Matthias Van Woensel committed May 17, 2017
    Configuration menu
    Copy the full SHA
    576baf1 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2017

  1. Configuration menu
    Copy the full SHA
    8439874 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    902d0fb View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2017

  1. Merge pull request #1262 from matthiaz/patch-21

    InsertOrUpdate now returns the autoincremented ID
    spekary committed Jul 7, 2017
    Configuration menu
    Copy the full SHA
    976502e View commit details
    Browse the repository at this point in the history

Commits on May 1, 2020

  1. Profile.php should not be accessible in production. Most people remov…

    …e the devtools on deploy, but lets make sure that this thing cannot run without EnableProfiling turned on to make sure.
    matthias Van Woensel committed May 1, 2020
    Configuration menu
    Copy the full SHA
    b38f2a4 View commit details
    Browse the repository at this point in the history
  2. fix typo

    matthias Van Woensel committed May 1, 2020
    Configuration menu
    Copy the full SHA
    b9ed267 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. Merge pull request #1320 from qcubed/fix-security-issue-profiler

    Fix security issue profiler
    matthiaz committed Aug 11, 2020
    Configuration menu
    Copy the full SHA
    a102b9a View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2020

  1. Configuration menu
    Copy the full SHA
    bc2bee2 View commit details
    Browse the repository at this point in the history