Changeset 112
- Timestamp:
- Jan 19, 2014, 12:50:15 AM (11 years ago)
- Location:
- branches/php
- Files:
-
- 58 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/php/Base/Database.php
r19 r112 114 114 } 115 115 } 116 117 ?> -
branches/php/Base/Error.php
r16 r112 73 73 74 74 set_error_handler('CustomErrorHandler'); 75 76 ?> -
branches/php/Base/HTML/AddWebObject.php
r17 r112 87 87 } 88 88 } 89 90 ?> -
branches/php/Base/HTML/Controller.php
r17 r112 139 139 } 140 140 } 141 142 ?> -
branches/php/Base/HTML/EditWebObject.php
r17 r112 102 102 } 103 103 } 104 105 ?> -
branches/php/Base/HTML/HTML.php
r19 r112 157 157 } 158 158 } 159 160 ?> -
branches/php/Base/HTML/ListWebObject.php
r17 r112 117 117 } 118 118 } 119 120 ?> -
branches/php/Base/HTML/PageList.php
r17 r112 85 85 } 86 86 } 87 88 ?> -
branches/php/Base/HTML/TableHeader.php
r17 r112 126 126 } 127 127 } 128 129 ?> -
branches/php/Base/HTML/ViewWebObject.php
r17 r112 71 71 } 72 72 } 73 74 ?> -
branches/php/Base/HTML/WebObject.php
r17 r112 9 9 } 10 10 } 11 12 ?> -
branches/php/Base/HTML/XHTML.php
r17 r112 34 34 } 35 35 } 36 37 ?> -
branches/php/Base/HTTP.php
r16 r112 4 4 { 5 5 } 6 7 ?> -
branches/php/Base/Localization.php
r16 r112 27 27 } 28 28 } 29 30 ?> -
branches/php/Base/Mail.php
r16 r112 30 30 } 31 31 } 32 33 ?> -
branches/php/Base/MemoryStream.php
r16 r112 80 80 81 81 } 82 83 84 ?> -
branches/php/Base/Navigation.php
r16 r112 27 27 } 28 28 } 29 30 ?> -
branches/php/Base/Network.php
r16 r112 20 20 } 21 21 } 22 23 ?> -
branches/php/Base/Output.php
r16 r112 21 21 } 22 22 } 23 24 ?> -
branches/php/Base/PrefixMultiplier.php
r16 r112 117 117 } 118 118 } 119 120 ?> -
branches/php/Base/ProtocolBuffers.php
r16 r112 3 3 class ProtocolBuffers 4 4 { 5 function WriteVarint(TMemoryStream *Stream, Value)5 function WriteVarint(TMemoryStream Stream, Value) 6 6 { 7 7 Data = Value & 0x7f; … … 16 16 } 17 17 18 function ReadVarint(TMemoryStream *Stream)18 function ReadVarint(TMemoryStream Stream) 19 19 { 20 20 Data = MemoryStreamReadByte(Stream); … … 30 30 } 31 31 } 32 33 ?> -
branches/php/Base/RSS.php
r16 r112 42 42 43 43 fclose($Soubor); 44 ?> -
branches/php/Base/String.php
r16 r112 11 11 } 12 12 } 13 14 ?> -
branches/php/Base/System.php
r16 r112 55 55 } 56 56 } 57 58 ?> -
branches/php/Base/Types/Base.php
r17 r112 31 31 } 32 32 } 33 34 ?> -
branches/php/Base/Types/Boolean.php
r17 r112 25 25 } 26 26 } 27 28 ?> -
branches/php/Base/Types/Color.php
r17 r112 24 24 } 25 25 } 26 27 ?> -
branches/php/Base/Types/Date.php
r17 r112 60 60 } 61 61 } 62 63 ?> -
branches/php/Base/Types/DateTime.php
r17 r112 92 92 } 93 93 } 94 95 ?> -
branches/php/Base/Types/Enumeration.php
r17 r112 32 32 } 33 33 } 34 35 ?> -
branches/php/Base/Types/File/File.php
r18 r112 43 43 } 44 44 } 45 46 ?> -
branches/php/Base/Types/File/FileDownload.php
r18 r112 20 20 echo(file_get_contents($Config['UploadFileFolder'].'/'.$DbRow['Id'])); 21 21 } else echo('Soubor nenalezen!'); 22 23 ?> -
branches/php/Base/Types/Float.php
r17 r112 24 24 } 25 25 } 26 27 ?> -
branches/php/Base/Types/GPS.php
r17 r112 70 70 } 71 71 } 72 73 ?> -
branches/php/Base/Types/Hidden.php
r17 r112 22 22 } 23 23 } 24 25 ?> -
branches/php/Base/Types/Hyperlink.php
r17 r112 22 22 } 23 23 } 24 25 ?> -
branches/php/Base/Types/IPv4Address.php
r17 r112 22 22 } 23 23 } 24 25 ?> -
branches/php/Base/Types/Integer.php
r17 r112 24 24 } 25 25 } 26 27 ?> -
branches/php/Base/Types/Password.php
r17 r112 42 42 } 43 43 } 44 45 ?> -
branches/php/Base/Types/PointerOneToMany.php
r17 r112 22 22 } 23 23 } 24 25 ?> -
branches/php/Base/Types/PointerOneToOne.php
r17 r112 38 38 } 39 39 } 40 41 ?> -
branches/php/Base/Types/String.php
r17 r112 29 29 } 30 30 } 31 32 ?> -
branches/php/Base/Types/Text.php
r17 r112 29 29 } 30 30 } 31 32 ?> -
branches/php/Base/Types/Time.php
r17 r112 56 56 } 57 57 } 58 59 ?> -
branches/php/Base/Types/Type.php
r17 r112 81 81 } 82 82 } 83 84 85 ?> -
branches/php/Base/URL.php
r16 r112 98 98 } 99 99 } 100 101 ?> -
branches/php/Base/UTF8.php
r16 r112 563 563 return($Result); 564 564 } 565 566 ?> -
branches/php/Base/User.php
r111 r112 59 59 } 60 60 } 61 62 63 64 ?> -
branches/php/Base/UserOnline.php
r111 r112 56 56 } 57 57 } 58 59 ?> -
branches/php/Base/XML.php
r16 r112 104 104 } 105 105 } 106 107 ?> -
branches/php/Configuration/ConfigSample.php
r19 r112 22 22 ), 23 23 ); 24 25 ?> -
branches/php/CustomOutput.php
r111 r112 138 138 } 139 139 } 140 141 ?> -
branches/php/Locale/csCZ.php
r28 r112 26 26 'VoIP' => 'VoIP', 27 27 ); 28 29 ?> -
branches/php/Module/Main/Controller.php
r28 r112 242 242 } 243 243 } 244 245 ?> -
branches/php/Module/Network/Controller.php
r17 r112 20 20 } 21 21 } 22 23 ?> -
branches/php/Module/User/Controller.php
r111 r112 230 230 } 231 231 } 232 233 ?> -
branches/php/import.php
r22 r112 56 56 $Application->Localization->Locale = $Config['Web']['Locale']; 57 57 $Application->Run(); 58 59 ?> -
branches/php/index.php
r22 r112 104 104 $Application->Localization->Locale = $Config['Web']['Locale']; 105 105 $Application->Run(); 106 107 ?>
Note:
See TracChangeset
for help on using the changeset viewer.