7d05065529
ws_helper : Better attribute parsing in nested types
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@145 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-17 00:52:02 +00:00
bbeed9acfd
ws_helper : nested type definition parsing
...
Example :
<xs:element name="NestedType">
<xs:complexType>
<xs:sequence>
<xs:element name="Property_1" type="xs:string"/>
<xs:element name="Property_2" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string"/>
<xs:element name="Value" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
ws_helper : Soap Binding Style are now recorded in the metadata registration subroutine generated by ws_helper
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@144 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-12 00:48:00 +00:00
98a3f13377
Updated status notes.
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@143 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-08 14:43:49 +00:00
a0d9171ddf
Fixed link setting
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@142 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-06 14:54:50 +00:00
213e0cc3b1
Fixed Panning window draw
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@141 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-06 00:57:17 +00:00
28313808a3
Started PanningWindow implementation
...
Fixed some resource files
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@140 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-04 18:09:47 +00:00
2090bf84b2
ws_helper parses ( and records in procedure Register_%service%_ServiceMetadata() )
...
- service/port for <soap:address>
- binding/operation for "soapAction"
ws_helper : better parsing of "function" operations
ws_helper supports a new switch :
-u MODE Generate the pascal translation of the WSDL input file
MODE value may be U for used types or A for all types
Complexe types extending with simpleContent support in the runtime and ws_helper :
sample WSDL type
<xs:complexType name="MeasureType">
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute name="UnitSystem" type="xs:token" use="optional">
</xs:attribute>
<xs:attribute name="ZeroPoint" type="string" use="optional">
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
embedded array support :
sample WSDL type
<xsd:complexType name="EmbeddeArraySample">
<xsd:sequence>
<xsd:element name="Name" type="xsd:string"/>
<xsd:element name="Count" type="xsd:int"/>
<xsd:element name="ArrayItem" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
sample instance of "EmbeddeArraySample"
<example>
<Name>WST NAME</Name>
<Count>3</Count>
<ArrayItem>Item 0</ArrayItem>
<ArrayItem>Item 1</ArrayItem>
<ArrayItem>Item 2</ArrayItem>
</example>
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@139 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-02 13:19:48 +00:00
77d87602b6
20070401 release (0.1.3): Fixes TO32FlexEdit tabbing and validation problems on win32 widgetset.
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@138 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-01 19:59:51 +00:00
479926d209
svn classes: fixed test
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@137 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-30 13:18:56 +00:00
49b0c3d159
soapAction parsing for operation, soap:address ( location ) parsing
...
TServiceOperation now has Properties ( see IModuleMetadataMngr.SetServiceCustomData ),
Code has been refactored to use ParseFilter() instead using TRttiFilterCreator
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@136 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-25 23:47:16 +00:00
0071bd8371
First implementation of the "WSDL to Pascal" fonctionality support in ws_helper.
...
ws_helper now has the following parameters :
ws_helper [-u] [-p] [-b] [-i] [-oPATH] inputFilename
-u Generate the pascal translation of the WSDL input file
-p Generate service proxy
-b Generate service binder
-i Generate service minimal implementation
-o PATH Relative output directory
-a PATH Absolute output directory
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@135 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-23 23:22:35 +00:00
2bb98d8d9a
Workaround to LCL bug 8553
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@134 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-22 15:17:42 +00:00
fbcb3d0030
isolated threading functions
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@133 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-19 17:46:44 +00:00
6a072baafc
Workaround to crash under GTK
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@132 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-19 15:02:31 +00:00
394413dee2
Added dataarray and images demos
...
Fixed header click when HeaderStates is empty
Depends of lclextensions package
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@131 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-18 22:38:02 +00:00
64cde2cf2a
Updated status.
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@130 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-18 21:33:12 +00:00
ae87723676
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@129 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-17 18:50:48 +00:00
825b15d142
Missing code from last commit - Fixed compilation under gtk
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@128 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-15 19:15:51 +00:00
4e70efbfe3
Added dummy MMSystem unit to linux/gtk
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@127 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-15 13:12:20 +00:00
21bf88d824
added dummy dragmanager unit to gtk
...
fixed compilation under gtk
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@126 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-15 12:22:59 +00:00
5d6e5c7558
Moved code from lclfunction.inc to DelphiCompat
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@125 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-15 09:49:29 +00:00
28532757f9
Cleaned Delphi specific defines
...
Removed dependency from Compilers.inc
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@124 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-14 20:25:25 +00:00
b753295148
fpsvnsync: added readme
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@123 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-08 21:14:11 +00:00
d50e06a2e8
initial import of fpsvnsync
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@122 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-08 21:10:28 +00:00
dd83bd49fe
Finished isolation of WinApi functions
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@121 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-07 14:24:30 +00:00
48d8f6864c
Started to isolate specific windows functions
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@120 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-06 20:33:09 +00:00
e7a96e5b6b
Removed direct dependency of ActiveX and OleUtils
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@119 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-06 12:16:42 +00:00
553c1325ac
Started to isolate OLE functions
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@118 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-05 23:28:47 +00:00
93fd07caa5
added TLogEntry.DisplayDate
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@117 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-05 16:16:17 +00:00
280e661bef
TLogEntry.GetFileList takes an optional parameter BaseDir
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@116 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-05 07:29:39 +00:00
7a193d82da
Fixed crash when using ole functions
...
Fixed drawing when using drag and drop
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@115 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-05 01:29:44 +00:00
099366f18b
added TSvnPropInfo.LoadForFiles
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@114 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-04 23:27:28 +00:00
e1c9c30365
added test date for TSvnPropInfo class
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@113 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-04 23:00:54 +00:00
ac626de964
added TSvnPropInfo class to hold svn proplist output
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@112 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-04 22:59:58 +00:00
db352a016a
Added ole demo
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@111 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-03 14:56:24 +00:00
7287d9f1f5
Fixed column position
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@110 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-03 14:48:36 +00:00
6a38dadae6
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@109 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-02 15:59:58 +00:00
8c0f698ae6
changed search routine for more compatibility
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@108 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-02 15:59:33 +00:00
00069a817f
added lpr file
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@107 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-02 15:39:43 +00:00
66a38b30a9
corrected some unit names
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@106 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-02 09:24:51 +00:00
6b93ddb7a0
renamed opbitmap units to avoid problems with the original package installed
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@105 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-02 07:30:16 +00:00
2948115530
Published StartDrag
...
Fixed some Drag&Drop related stuff
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@104 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-02 06:47:20 +00:00
2e04d5fa84
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@103 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-03-01 21:00:32 +00:00
21beb2fec8
Implemented SetTimer/KillTimer
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@102 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-28 21:39:33 +00:00
4041d373d1
New version for CCR
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@101 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-27 17:30:59 +00:00
13200829e9
Corrected patch by Theo
...
fixes checkboximage issues.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@100 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-27 17:27:59 +00:00
c1e34e90a8
svn: added unit for executing svn commands and capturing the output
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@99 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-27 15:55:11 +00:00
0280be7f26
svnclasses: implemented reading svn log output
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@98 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-27 14:09:02 +00:00
aaa1e2cc6a
Implemented column resize
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@97 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-27 13:32:54 +00:00
94edd76efc
Basic languagedefinitions
...
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@96 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-27 09:43:26 +00:00