You can subscribe to this list here.
| 2003 |
Jan
(14) |
Feb
(14) |
Mar
(58) |
Apr
(6) |
May
(61) |
Jun
(30) |
Jul
(21) |
Aug
(7) |
Sep
|
Oct
|
Nov
(10) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
(11) |
Mar
(16) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(85) |
| 2005 |
Jan
(31) |
Feb
(5) |
Mar
(18) |
Apr
(7) |
May
(1) |
Jun
(13) |
Jul
(33) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(2) |
Mar
(21) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: justinwatkins <jus...@us...> - 2003-12-12 04:19:12
|
CVS commit by justinwatkins: Slight modifications to debug sources. Changed odbc adapter to suggested source M +24 -11 sources/flashservices/sql/odbcAdapter.php 1.4 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:03
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin A sources/flashservices/util/AMFBody.php 1.1 A sources/flashservices/util/AMFHeader.php 1.1 A sources/flashservices/util/SessionManager.php 1.1 M +132 -61 sources/flashservices/util/AMFObject.php 1.9 M +11 -1 sources/flashservices/util/Authenticate.php 1.6 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:03
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin M +14 -14 sources/flashservices/sql/PageAbleResult.php 1.3 M +23 -9 sources/flashservices/sql/RecordSetAdapter.php 1.5 M +4 -3 sources/flashservices/sql/adodbAdapter.php 1.3 M +4 -3 sources/flashservices/sql/mssqlAdapter.php 1.3 M +5 -3 sources/flashservices/sql/mysqlAdapter.php 1.3 M +4 -3 sources/flashservices/sql/odbcAdapter.php 1.3 M +4 -3 sources/flashservices/sql/pgsqlAdapter.php 1.3 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:03
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin M +16 -7 sources/flashservices/io/AMFDeserializer.php 1.10 M +5 -6 sources/flashservices/io/AMFInputStream.php 1.7 M +26 -36 sources/flashservices/io/AMFSerializer.php 1.26 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:03
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin A sources/flashservices/exception/Exception.php 1.1 M +6 -5 sources/flashservices/exception/Exceptions.php 1.9 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:03
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin A sources/flashservices/filters/AMFFilterChain.php 1.1 A sources/flashservices/filters/AuthenticationFilter.php 1.1 A sources/flashservices/filters/BatchProcessFilter.php 1.1 A sources/flashservices/filters/DebugFilter.php 1.1 A sources/flashservices/filters/DeserializationFilter.php 1.1 A sources/flashservices/filters/SerializationFilter.php 1.1 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:02
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin A sources/flashservices/app/Constants.php 1.1 M +27 -486 sources/flashservices/app/Executive.php 1.26 M +58 -151 sources/flashservices/app/Gateway.php 1.21 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:02
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin A sources/flashservices/debug/AMFMethodCall.php 1.1 A sources/flashservices/debug/AMFRequestHeaders.php 1.1 A sources/flashservices/debug/AMFResponseHeaders.php 1.1 M +18 -11 sources/flashservices/debug/httpheaders.php 1.2 |
|
From: justinwatkins <jus...@us...> - 2003-11-19 00:23:02
|
CVS commit by justinwatkins: It's been a few months in the making but some progress is finally here. This is a primarily functional upgrade. I haven't tested every feature, and it's not feature complete. This is definitely an *unstable* version in the CVS. If you still need to use amfphp, continue with your current version. It's been a couple of months and I need some version control power provided by CVS. This update is nearly a complete rewrite of every class. The architecture is more organized and uses series of chainable filters and actions to perform the stream processing and execution of the class files. Debugging has been tremendously improved. amfphp is now tightly coupled with the NetConnection debugger. You can view http header data, amf header data, and amf call and response data reported to the debugger. amfphp also listens to the filter settings for the debugger, so you can disable certain groups of debugging information. There is also a new exception handling system. Exceptions are no longer handled by the built in php system and are routed through an internal exception system which gives greater control over how the exceptions are handled and returned. The result of this is an entire batch of method calls will not fail if a single method fails. Only the method call that failed will recieve the onStatus event. Exceptions are now stacked so if there are multiple problems with the execution of an rpc, you should see most of them. (There are some cases where execution just shouldn't continue, so you still may get additional errors if you fix the first one). Right now UTF8 is gone. From the bug reports, it seems that always encoding/decoding as UTF8 is not the most popular choice, so utf8 is gone by default. I am working on a system to tag every piece of meta data as utf8 so you can define on a fairly granular level which arguments and results should be treated as utf8 for multibyte languages. This will obviously need lots of testing once it's complete. The major todo's I still have are implement and ACL system for allowing and denying IP and host addresses to all gateway services and implement a better way for assigning meta data. My current idea for the meta data is to add a gateway config method similar to setMetaDataPath(dir). This will be a folder that will hold all of the meta data information in XML format. The XML files will need to be named ClassName.xml (the same class name as the actual class). and reside in a folder structure identical to the associated classes class path. The advantage of making it a seperate directory key is you can have that directory out side of the web root and not visible to the world. Of course the old method table implementation will still stick around. Well I hope this actually turns out to be a big improvement for amfphp. I still have a few items on my task list and once that's finished I'll start a formal beta process so we can get this product up to a 1.0 status. Justin A sources/flashservices/actions/AMFActionChain.php 1.1 A sources/flashservices/actions/AdapterAction.php 1.1 A sources/flashservices/actions/ClassLoaderAction.php 1.1 A sources/flashservices/actions/ExecutionAction.php 1.1 A sources/flashservices/actions/SecurityAction.php 1.1 A sources/flashservices/actions/WebServiceAction.php 1.1 |
|
From: justinwatkins <jus...@us...> - 2003-11-18 18:27:57
|
CVS commit by justinwatkins: Directory /cvsroot/amfphp/sources/flashservices/actions added to the repository |
|
From: justinwatkins <jus...@us...> - 2003-11-18 18:27:40
|
CVS commit by justinwatkins: Directory /cvsroot/amfphp/sources/flashservices/filters added to the repository |
|
From: johncowen <joh...@us...> - 2003-08-01 17:08:05
|
CVS commit by johncowen: Removed lack of support of Paged Recordsets comment Added a comment about the lack of support of NC Debugger Events M +1 -1 website/files/home.php 1.16 |
|
From: johncowen <joh...@us...> - 2003-08-01 16:03:48
|
CVS commit by johncowen: Recordsets now function properly although with large recordsets data seems to be lost sometimes when a large amount of data needs to be received quickly in small amounts...?? 1. The pageable recordsets are now stored in separate array keys in the one single session instead of in various sessions 2. The pages of recordsets are gradually removed as they are collected 3. The release function now works cleaning up any recordset keys that are empty, other deletion of unused data should be taken care of by phps garbage collection 4. Beginning of implementation of the extra debugging features of the NetConnection Debugger 5. Minor formatting changes M +14 -10 sources/flashservices/sql/PageAbleResult.php 1.2 M +3 -3 sources/flashservices/sql/RecordSetAdapter.php 1.4 |
|
From: johncowen <joh...@us...> - 2003-08-01 16:03:47
|
CVS commit by johncowen: Recordsets now function properly although with large recordsets data seems to be lost sometimes when a large amount of data needs to be received quickly in small amounts...?? 1. The pageable recordsets are now stored in separate array keys in the one single session instead of in various sessions 2. The pages of recordsets are gradually removed as they are collected 3. The release function now works cleaning up any recordset keys that are empty, other deletion of unused data should be taken care of by phps garbage collection 4. Beginning of implementation of the extra debugging features of the NetConnection Debugger 5. Minor formatting changes M +46 -6 sources/flashservices/util/AMFObject.php 1.8 |
|
From: johncowen <joh...@us...> - 2003-08-01 16:03:47
|
CVS commit by johncowen: Recordsets now function properly although with large recordsets data seems to be lost sometimes when a large amount of data needs to be received quickly in small amounts...?? 1. The pageable recordsets are now stored in separate array keys in the one single session instead of in various sessions 2. The pages of recordsets are gradually removed as they are collected 3. The release function now works cleaning up any recordset keys that are empty, other deletion of unused data should be taken care of by phps garbage collection 4. Beginning of implementation of the extra debugging features of the NetConnection Debugger 5. Minor formatting changes M +1 -1 sources/flashservices/io/AMFDeserializer.php 1.9 M +23 -10 sources/flashservices/io/AMFSerializer.php 1.25 |
|
From: johncowen <joh...@us...> - 2003-08-01 16:03:47
|
CVS commit by johncowen: Recordsets now function properly although with large recordsets data seems to be lost sometimes when a large amount of data needs to be received quickly in small amounts...?? 1. The pageable recordsets are now stored in separate array keys in the one single session instead of in various sessions 2. The pages of recordsets are gradually removed as they are collected 3. The release function now works cleaning up any recordset keys that are empty, other deletion of unused data should be taken care of by phps garbage collection 4. Beginning of implementation of the extra debugging features of the NetConnection Debugger 5. Minor formatting changes M +6 -15 sources/flashservices/app/Executive.php 1.25 M +31 -7 sources/flashservices/app/Gateway.php 1.20 |
|
From: johncowen <joh...@us...> - 2003-08-01 15:58:55
|
CVS commit by johncowen: Initial import of files to support extra debugging using the NetConnection Debugger A sources/flashservices/debug/AMFDebugEvent.php 1.1 A sources/flashservices/debug/AMFDebugger.php 1.1 A sources/flashservices/debug/httpheaders.php 1.1 |
|
From: johncowen <joh...@us...> - 2003-08-01 15:57:46
|
CVS commit by johncowen: Directory /cvsroot/amfphp/sources/flashservices/debug added to the repository |
|
From: johncowen <joh...@us...> - 2003-07-28 16:52:35
|
CVS commit by johncowen: First attempt at Pageable RecordSet implemention. At the moment there is limited support, it still doesn't cater for multiple pageable recordsets in the same client, and it doesn't seem to be destroy sessions properly M +5 -3 sources/flashservices/util/AMFObject.php 1.7 |
|
From: johncowen <joh...@us...> - 2003-07-28 16:52:34
|
CVS commit by johncowen: First attempt at Pageable RecordSet implemention. At the moment there is limited support, it still doesn't cater for multiple pageable recordsets in the same client, and it doesn't seem to be destroy sessions properly M +32 -7 sources/flashservices/io/AMFSerializer.php 1.24 |
|
From: johncowen <joh...@us...> - 2003-07-28 16:52:34
|
CVS commit by johncowen: First attempt at Pageable RecordSet implemention. At the moment there is limited support, it still doesn't cater for multiple pageable recordsets in the same client, and it doesn't seem to be destroy sessions properly M +40 -4 sources/flashservices/app/Executive.php 1.24 M +3 -2 sources/flashservices/app/Gateway.php 1.19 |
|
From: johncowen <joh...@us...> - 2003-07-28 16:52:34
|
CVS commit by johncowen: First attempt at Pageable RecordSet implemention. At the moment there is limited support, it still doesn't cater for multiple pageable recordsets in the same client, and it doesn't seem to be destroy sessions properly A sources/flashservices/sql/PageAbleResult.php 1.1 M +39 -5 sources/flashservices/sql/RecordSetAdapter.php 1.3 |
|
From: johncowen <joh...@us...> - 2003-07-18 17:09:47
|
CVS commit by johncowen: 1. Removed PHP Conference section 2. Added link to version 0.9 3. Modified Known Issues section to include new problems M +4 -8 website/files/home.php 1.15 |
|
From: johncowen <joh...@us...> - 2003-07-18 17:08:35
|
CVS commit by johncowen: Added new Help and Support section and split the Developers section into this M +8 -4 website/files/about.php 1.8 M +13 -12 website/files/developers.php 1.3 |
|
From: johncowen <joh...@us...> - 2003-07-18 17:07:59
|
CVS commit by johncowen: Added link to Macromedia tutorial M +1 -0 website/files/examples.php 1.6 |