Earlier this year
-
-
issue 5
(oEmbed discovery -- support entities and whitespace) reported by ohnobinki
-
-
-
-
-
issue 4
(Class.js Internet Explorer problem with indexOf) reported by patxi1980
-
-
Pattern-1.3.0RC4.tgz (Pattern-1.3.0RC4) file uploaded by ian.eure
-
Labels:
Featured
Type-Package
OpSys-All
Labels:
Featured
Type-Package
OpSys-All
-
Muuttaa-0.0.10.tgz (Muuttaa-0.0.10) file uploaded by ian.eure
-
Labels:
Featured
Type-Package
OpSys-All
Labels:
Featured
Type-Package
OpSys-All
-
PDB-0.5.0RC3.tgz (PDB -.5.0RC3) file uploaded by ian.eure
-
Labels:
Featured
Type-Package
OpSys-All
Labels:
Featured
Type-Package
OpSys-All
-
-
-
PDB-0.5.0RC2.tgz (PDB 0.5.0RC2) file uploaded by ian.eure
-
Labels:
Type-Package
Featured
OpSys-All
Labels:
Type-Package
Featured
OpSys-All
-
Pattern-1.3.0RC3.tgz (Pattern 1.3.0RC3) file uploaded by ian.eure
-
Labels:
Type-Package
Featured
OpSys-All
Labels:
Type-Package
Featured
OpSys-All
-
Muuttaa-0.0.7.tgz (Muuttaa-0.0.7) file uploaded by ian.eure
-
Labels:
Type-Package
Featured
OpSys-All
Labels:
Type-Package
Featured
OpSys-All
-
r117
(Move to pear.php.net, bump version.
) committed by ian.eure
- Move to pear.php.net, bump version.
Move to pear.php.net, bump version.
-
r116
(Tag Muuttaa-0.0.4) committed by ian.eure
- Tag Muuttaa-0.0.4
-
r115
(Require Muuttaa/Common.php
) committed by ian.eure
- Require Muuttaa/Common.php
Require Muuttaa/Common.php
-
Muuttaa-0.0.6.tgz (Muuttaa-0.0.6) file uploaded by ian.eure
-
Labels:
Type-Package
Featured
OpSys-All
Labels:
Type-Package
Featured
OpSys-All
-
r114
(Tag Muuttaa-0.0.6) committed by ian.eure
- Tag Muuttaa-0.0.6
-
r113
(Prep Muuttaa-0.0.6) committed by ian.eure
- Prep Muuttaa-0.0.6
-
r112
(Fix query in `destroy()`.
) committed by ian.eure
- Fix query in `destroy()`.
Fix query in `destroy()`.
-
Muuttaa-0.0.5.tgz (Muuttaa-0.0.5) file uploaded by ian.eure
-
Labels:
Featured
Type-Package
OpSys-All
Labels:
Featured
Type-Package
OpSys-All
-
r111
(Tag Muuttaa-0.0.5) committed by ian.eure
- Tag Muuttaa-0.0.5
-
r110
(Prep Muuttaa-0.0.5) committed by ian.eure
- Prep Muuttaa-0.0.5
-
r109
(Move the queue pruning out-of-band, otherwise the queue will...) committed by ian.eure
- Move the queue pruning out-of-band, otherwise the queue will never reach empty.
Fix a SQL error in the prune, the `WHERE` for the `errors` table was using `id`, rather than
`statementid`.
Prime the output of `getQueueStats()` so there's always a key for each status, negating the need to
messy `isset()` tests.
Add `Muuttaa_Common::destroy()` to nuke a whole queue.
Move the queue pruning out-of-band, otherwise the queue will never reach empty.
Fix a SQL error in the prune, the `WHERE` for the `errors` table was using `id`, rather than
`statementid`.
Prime the output of `getQueueStats()` so there's always a key for each status, negating the need to
messy `isset()` tests.
Add `Muuttaa_Common::destroy()` to nuke a whole queue.
-
-
-
r108
(Use `$this->db()`, rather than `$this->db`, fixes issue #3.
) committed by ian.eure
- Use `$this->db()`, rather than `$this->db`, fixes issue #3 .
Use `$this->db()`, rather than `$this->db`, fixes issue #3 .
-
Muuttaa-0.0.4.tgz (Muuttaa-0.0.4) file uploaded by ian.eure
-
Labels:
Type-Package
Featured
OpSys-All
Labels:
Type-Package
Featured
OpSys-All
-
r107
(Tag Muuttaa-0.0.4) committed by ian.eure
- Tag Muuttaa-0.0.4
-
r106
(Prep Muuttaa-0.0.4) committed by ian.eure
- Prep Muuttaa-0.0.4
-
-
-
-
r104
(Prep PDB-0.0.7) committed by ian.eure
- Prep PDB-0.0.7
-
r103
(The test for "2006 MySQL server has gone away" is bogus; we ...) committed by ian.eure
- The test for "2006 MySQL server has gone away" is bogus; we re-throw any PDOException exception in
PDB_Common::query(), so the PDB_Exception we catch won't have $info set. Check the error string
instead.
The test for "2006 MySQL server has gone away" is bogus; we re-throw any PDOException exception in
PDB_Common::query(), so the PDB_Exception we catch won't have $info set. Check the error string
instead.
-
r102
(Add queue-handling functions to Muuttaa_Common: getQueue(), ...) committed by ian.eure
- Add queue-handling functions to Muuttaa_Common: getQueue(), getQueueSize() and getQueueStats().
Call getQueue() in Muuttaa_Process::process() instead of rolling SQL.
Refactor Muuttaa::commit():
- Instead of returning true, return an array of STATEMENT_ID -> STATEMENT, where STATEMENT_ID is
the DB ID of the statement after it was inserted.
- Wrap the whole commit in a transaction instead of each statement, which allows us to fail the
whole thing if a statement can't be added. Also, once you commit, lastInsertId() doesn't work.
- Use a prepared statement.
Add queue-handling functions to Muuttaa_Common: getQueue(), getQueueSize() and getQueueStats().
Call getQueue() in Muuttaa_Process::process() instead of rolling SQL.
Refactor Muuttaa::commit():
- Instead of returning true, return an array of STATEMENT_ID -> STATEMENT, where STATEMENT_ID is
the DB ID of the statement after it was inserted.
- Wrap the whole commit in a transaction instead of each statement, which allows us to fail the
whole thing if a statement can't be added. Also, once you commit, lastInsertId() doesn't work.
- Use a prepared statement.
Older
-
-
r101
(Move the `$limit` var out of the args array and into the que...) committed by ian.eure
- Move the `$limit` var out of the args array and into the query body, since PDO seems to escape it
with quotes even though it's an int, and this breaks the query. Bad PDO, no treat.
Move the `$limit` var out of the args array and into the query body, since PDO seems to escape it
with quotes even though it's an int, and this breaks the query. Bad PDO, no treat.
-
-
r100
(Prep PDB-0.0.6.
) committed by ian.eure
- Prep PDB-0.0.6.
-
r99
(It's InvalidArgumentException, not UnexpectedArgumentExcepti...) committed by ian.eure
- It's InvalidArgumentException, not UnexpectedArgumentException.
It's InvalidArgumentException, not UnexpectedArgumentException.
-
-
r98
(Tag PDB-0.0.5) committed by ian.eure
- Tag PDB-0.0.5
-
r97
(It's `throw new Export`, not `throw Exception`, fixes #2.
) committed by ian.eure
- It's `throw new Export`, not `throw Exception`, fixes #2.
It's `throw new Export`, not `throw Exception`, fixes #2.
-
r96
(create tag for 0.0.4 from trunk r94) committed by phatduckk
- create tag for 0.0.4 from trunk r94
create tag for 0.0.4 from trunk r94
-
-
r94
(change version in package.xml) committed by phatduckk
- change version in package.xml
change version in package.xml
-
r93
(Fix `setFetchMode()`, fixes #2.
) committed by ian.eure
- Fix `setFetchMode()`, fixes #2.
Fix `setFetchMode()`, fixes #2.
-
|