Changeset 548
- Timestamp:
- Jul 2, 2013, 10:09:07 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 146 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/AppModule.php
r538 r548 101 101 102 102 } 103 104 ?> -
trunk/Common/Database.php
r536 r548 3 3 // Extended database class 4 4 // Date: 2011-11-25 5 6 5 7 6 class DatabaseResult … … 195 194 return(MysqlDateTimeToTime('0000-00-00 '.$Time)); 196 195 } 197 198 ?> -
trunk/Common/EmailQueue.php
r532 r548 38 38 } 39 39 } 40 41 ?> -
trunk/Common/Form/Form.php
r540 r548 306 306 } 307 307 } 308 309 ?> -
trunk/Common/Form/Types/Base.php
r536 r548 55 55 } 56 56 } 57 58 ?> -
trunk/Common/Form/Types/Boolean.php
r428 r548 25 25 } 26 26 } 27 28 ?> -
trunk/Common/Form/Types/Color.php
r430 r548 24 24 } 25 25 } 26 27 ?> -
trunk/Common/Form/Types/Date.php
r455 r548 77 77 } 78 78 } 79 80 ?> -
trunk/Common/Form/Types/DateTime.php
r455 r548 98 98 } 99 99 } 100 101 ?> -
trunk/Common/Form/Types/Enumeration.php
r501 r548 44 44 } 45 45 } 46 47 ?> -
trunk/Common/Form/Types/File.php
r507 r548 147 147 148 148 } 149 150 ?> -
trunk/Common/Form/Types/Float.php
r428 r548 24 24 } 25 25 } 26 27 ?> -
trunk/Common/Form/Types/GPS.php
r428 r548 70 70 } 71 71 } 72 73 ?> -
trunk/Common/Form/Types/Hidden.php
r501 r548 28 28 } 29 29 } 30 31 ?> -
trunk/Common/Form/Types/Hyperlink.php
r428 r548 22 22 } 23 23 } 24 25 ?> -
trunk/Common/Form/Types/IPv4Address.php
r428 r548 22 22 } 23 23 } 24 25 ?> -
trunk/Common/Form/Types/Integer.php
r428 r548 24 24 } 25 25 } 26 27 ?> -
trunk/Common/Form/Types/OneToMany.php
r547 r548 68 68 if(array_key_exists('View', $Type['Parameters'])) $Table = $Type['Parameters']['View']; 69 69 else $Table = $Type['Parameters']['Table']; 70 $Output = '`'.$Item['Name'].'`, (SELECT `'.$Type['Parameters']['Name'].'`'.70 $Output = '`'.$Item['Name'].'`, (SELECT '.$Type['Parameters']['Name'].''. 71 71 ' AS `Name` FROM '.$Table.' WHERE `'. 72 72 $Type['Parameters']['Id'].'`=`'.$Item['Name'].'`) AS `'.$Item['Name'].'_Filter`'; … … 75 75 } 76 76 } 77 78 ?> -
trunk/Common/Form/Types/OneToMany2.php
r428 r548 22 22 } 23 23 } 24 25 ?> -
trunk/Common/Form/Types/Password.php
r484 r548 56 56 } 57 57 } 58 59 ?> -
trunk/Common/Form/Types/RandomHash.php
r501 r548 34 34 } 35 35 } 36 37 ?> -
trunk/Common/Form/Types/String.php
r448 r548 30 30 } 31 31 } 32 33 ?> -
trunk/Common/Form/Types/Text.php
r428 r548 29 29 } 30 30 } 31 32 ?> -
trunk/Common/Form/Types/Time.php
r455 r548 69 69 } 70 70 } 71 72 ?> -
trunk/Common/Form/Types/Type.php
r502 r548 103 103 } 104 104 } 105 106 ?> -
trunk/Common/Global.php
r545 r548 438 438 439 439 GlobalInit(); 440 441 ?> -
trunk/Common/Image.php
r468 r548 140 140 } 141 141 } 142 143 ?> -
trunk/Common/Mail.php
r460 r548 243 243 $Mail->Send(); 244 244 */ 245 246 ?> -
trunk/Common/Module.php
r524 r548 17 17 } 18 18 } 19 20 ?> -
trunk/Common/NetworkAddress.php
r438 r548 57 57 } 58 58 } 59 60 ?> -
trunk/Common/Page.php
r533 r548 161 161 } 162 162 } 163 164 ?> -
trunk/Common/PrefixMultiplier.php
r500 r548 117 117 } 118 118 } 119 120 ?> -
trunk/Common/RSS.php
r532 r548 42 42 } 43 43 } 44 45 ?> -
trunk/Common/System.php
r532 r548 93 93 } 94 94 } 95 96 ?> -
trunk/Common/UTF8.php
r533 r548 563 563 return($Result); 564 564 } 565 566 ?> -
trunk/Common/Update.php
r507 r548 313 313 $Output .= " = '".$Value."';\n"; 314 314 } 315 $Output .= "\n\n ?>";315 $Output .= "\n\n"; 316 316 return($Output); 317 317 } 318 318 } 319 320 ?> -
trunk/Common/Version.php
r547 r548 5 5 $ReleaseTime = '2013-06-12'; 6 6 7 ?> -
trunk/FormClasses.php
r540 r548 747 747 ); 748 748 } 749 750 ?> -
trunk/Modules/Chat/Chat.php
r525 r548 104 104 } 105 105 } 106 107 ?> -
trunk/Modules/Chat/irc_bot.php
r438 r548 200 200 $IRCBot = new IRCBot(); 201 201 $IRCBot->Run(); 202 203 ?> -
trunk/Modules/Error/Error.php
r523 r548 129 129 } 130 130 } 131 132 ?> -
trunk/Modules/File/File.php
r538 r548 149 149 } 150 150 } 151 152 ?> -
trunk/Modules/File/MimeTypes.php
r514 r548 124 124 'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed') 125 125 ); 126 127 ?> -
trunk/Modules/Finance/Bill.php
r521 r548 183 183 } 184 184 } 185 186 ?> -
trunk/Modules/Finance/Consumption.php
r521 r548 28 28 } 29 29 } 30 31 ?> -
trunk/Modules/Finance/Customers.php
r537 r548 79 79 } 80 80 } 81 82 ?> -
trunk/Modules/Finance/Devices.php
r521 r548 33 33 } 34 34 } 35 36 ?> -
trunk/Modules/Finance/Finance.php
r546 r548 470 470 } 471 471 } 472 473 ?> -
trunk/Modules/Finance/Import.php
r537 r548 146 146 } 147 147 } 148 149 ?> -
trunk/Modules/Finance/Manage.php
r546 r548 577 577 } 578 578 } 579 580 ?> -
trunk/Modules/Finance/MonthlyOverall.php
r521 r548 31 31 } 32 32 } 33 34 ?> -
trunk/Modules/Finance/Overview.php
r537 r548 93 93 } 94 94 } 95 96 ?> -
trunk/Modules/Finance/Services.php
r537 r548 68 68 } 69 69 } 70 71 ?> -
trunk/Modules/Finance/UserState.php
r537 r548 149 149 } 150 150 } 151 152 ?> -
trunk/Modules/Finance/Zivnost.php
r524 r548 374 374 } 375 375 } 376 377 ?> -
trunk/Modules/FinanceBankAPI/FileImport.php
r536 r548 131 131 } 132 132 } 133 134 ?> -
trunk/Modules/FinanceBankAPI/FinanceBankAPI.php
r538 r548 65 65 } 66 66 } 67 68 69 ?> -
trunk/Modules/FinanceBankAPI/Fio.php
r500 r548 73 73 } 74 74 } 75 76 ?> -
trunk/Modules/FinanceBankAPI/FioAPI.php
r536 r548 80 80 } 81 81 } 82 83 ?> -
trunk/Modules/FinanceBankAPI/FioDemo.php
r506 r548 51 51 echo('</table>'); 52 52 echo('</body></html>'); 53 54 ?> -
trunk/Modules/FinanceBankAPI/GPC.php
r500 r548 56 56 } 57 57 } 58 59 ?> -
trunk/Modules/FinanceBankAPI/ImportFio.php
r505 r548 39 39 } 40 40 } 41 42 ?> -
trunk/Modules/FinanceBankAPI/ImportPS.php
r502 r548 104 104 } 105 105 } 106 107 ?> -
trunk/Modules/IS/IS.php
r547 r548 284 284 $TotalFilteredCount = $DbRow[0]; 285 285 } else $TotalFilteredCount = $TotalCount; 286 echo($TotalFilteredCount.', ');287 286 $PageList = GetPageList($TotalFilteredCount); 288 287 … … 486 485 } 487 486 } 488 489 ?> -
trunk/Modules/Log/Log.php
r538 r548 59 59 } 60 60 } 61 62 ?> -
trunk/Modules/Map/Map.php
r538 r548 175 175 } 176 176 } 177 178 ?> -
trunk/Modules/Meals/Meals.php
r523 r548 207 207 } 208 208 } 209 210 ?> -
trunk/Modules/Meteostation/Download.php
r468 r548 9 9 sleep(60); 10 10 } 11 12 ?> -
trunk/Modules/Meteostation/Meteostation.php
r519 r548 124 124 } 125 125 } 126 127 ?> -
trunk/Modules/Network/Administration.php
r526 r548 45 45 } 46 46 } 47 48 ?> -
trunk/Modules/Network/Availability.php
r543 r548 122 122 } 123 123 } 124 125 ?> -
trunk/Modules/Network/HostList.php
r519 r548 48 48 } 49 49 } 50 51 ?> -
trunk/Modules/Network/Hosting.php
r519 r548 19 19 } 20 20 } 21 22 ?> -
trunk/Modules/Network/Network.php
r546 r548 279 279 } 280 280 } 281 282 ?> -
trunk/Modules/Network/Subnet.php
r525 r548 57 57 } 58 58 } 59 60 ?> -
trunk/Modules/Network/UserHosts.php
r529 r548 38 38 } 39 39 } 40 41 ?> -
trunk/Modules/NetworkConfig/Generate.php
r522 r548 28 28 } 29 29 } 30 31 ?> -
trunk/Modules/NetworkConfig/NetworkConfig.php
r538 r548 54 54 } 55 55 } 56 57 ?> -
trunk/Modules/NetworkConfigLinux/Generators/DHCP.php
r522 r548 41 41 fclose($File); 42 42 */ 43 44 ?> -
trunk/Modules/NetworkConfigLinux/Generators/IPTables.php
r522 r548 112 112 113 113 exec('/sbin/iptables-save>/etc/sysconfig/iptables'); 114 115 ?> -
trunk/Modules/NetworkConfigLinux/Generators/NAT.php
r522 r548 112 112 113 113 exec('/sbin/iptables-save>/etc/sysconfig/iptables'); 114 115 ?> -
trunk/Modules/NetworkConfigLinux/Generators/TrafficShaping.php
r522 r548 295 295 fclose($File); 296 296 fclose($FileClassInfo); 297 298 ?> -
trunk/Modules/NetworkConfigLinux/NetworkConfigLinux.php
r522 r548 29 29 } 30 30 } 31 32 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/AddressPortability.php
r522 r548 69 69 $Routerboard->ExecuteBatch($MangleRule); 70 70 $System->Database->query('UPDATE NetworkInterfacePortable SET Update=0'); 71 72 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/Common.php
r522 r548 123 123 } 124 124 */ 125 126 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/DHCP.php
r522 r548 30 30 echo("\n"); 31 31 } 32 33 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/DNS.php
r522 r548 274 274 GenerateDNS($LocalDNS); 275 275 GenerateDNS($ExternalDNS); 276 277 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/FirewallFilter.php
r522 r548 90 90 //print_r($Items); 91 91 $Routerboard->ListUpdate($Path, array('chain', 'dst-address', 'in-interface', 'src-address', 'out-interface', 'dst-port', 'protocol', 'action', 'comment', 'jump-target', 'src-port'), $Items); 92 93 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/FirewallMangle.php
r522 r548 139 139 //print_r($ItemsFirewall); 140 140 $Routerboard->ListUpdate($PathFirewall, array('chain', 'dst-address', 'in-interface', 'action', 'new-packet-mark', 'passthrough', 'comment', 'out-interface', 'src-address', 'jump-target'), $ItemsFirewall, array(), true); 141 142 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/FirewallNAT.php
r522 r548 137 137 //print_r($Items); 138 138 $Routerboard->ListUpdate($Path, array('chain', 'dst-address', 'in-interface', 'src-address', 'out-interface', 'to-ports', 'dst-port', 'protocol', 'action', 'to-addresses', 'comment', 'jump-target', 'src-port'), $Items); 139 140 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/Netwatch.php
r522 r548 36 36 echo("\n"); 37 37 } 38 39 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/NetwatchImport.php
r522 r548 70 70 sleep($Delay); 71 71 } 72 73 ?> -
trunk/Modules/NetworkConfigRouterOS/Generators/Queue.php
r540 r548 128 128 //print_r($ItemsQueue); 129 129 $Routerboard->ListUpdate($PathQueue, array('name', 'limit-at', 'max-limit', 'parent', 'packet-mark'), $ItemsQueue, array(), true); 130 131 ?> -
trunk/Modules/NetworkConfigRouterOS/NetworkConfigRouterOS.php
r522 r548 29 29 } 30 30 } 31 32 ?> -
trunk/Modules/NetworkConfigRouterOS/Routerboard.php
r522 r548 243 243 } 244 244 } 245 246 ?> -
trunk/Modules/NetworkConfigRouterOS/Routerboard2.php
r522 r548 70 70 } 71 71 } 72 73 ?> -
trunk/Modules/NetworkConfigRouterOS/RouterboardAPI.php
r540 r548 234 234 } 235 235 } 236 237 ?> -
trunk/Modules/NetworkConfigRouterOS/SSH.php
r522 r548 57 57 } 58 58 } 59 60 ?> -
trunk/Modules/NetworkShare/NetworkShare.php
r505 r548 34 34 } 35 35 } 36 37 ?> -
trunk/Modules/NetworkShare/SharePage.php
r524 r548 321 321 } 322 322 } 323 324 ?> -
trunk/Modules/NetworkShare/browse.php
r505 r548 255 255 256 256 echo("Doba procházení: ".date("H:i:s", time() - $StartTime - 3600)."\n\n"); 257 ?> -
trunk/Modules/NetworkShare/firefox.php
r4 r548 42 42 43 43 ShowFooter(); 44 45 ?> -
trunk/Modules/NetworkShare/online.php
r505 r548 96 96 } 97 97 echo("\n\nKontrola dokoncena\n\n"); 98 ?> -
trunk/Modules/NetworkShare/playlist.php
r505 r548 1 1 <?php 2 2 include('../global.php'); 3 // Omezen í na online/offline uµivatele3 // Omezen� na online/offline u�ivatele 4 4 5 5 $DbResult = $Database->query('SELECT id FROM hosts WHERE online=1 AND block=0 AND user>0'); … … 13 13 $Database->select_db('share'); 14 14 15 // Maxim ální vnoøení15 // Maxim�ln� vno�en� 16 16 $MaxNesting = 20; 17 17 18 // Najde cestu ke ke øenu18 // Najde cestu ke ke�enu 19 19 function PlnaCesta($Row) 20 20 { 21 21 global $MaxNesting, $Database; 22 22 23 // Vyhled ánícesty23 // Vyhled�n� cesty 24 24 $Otec = $Row['parent']; 25 25 $Cesta = ''; //$Row['name']; … … 57 57 echo($Dir.$Row['name'].'.'.$Row['ext']."\n"); 58 58 } 59 60 ?> -
trunk/Modules/NetworkShare/update.php
r505 r548 39 39 //Sleep($Cekat); 40 40 //} 41 42 ?> -
trunk/Modules/NetworkTopology/NetworkTopology.php
r519 r548 159 159 } 160 160 } 161 162 ?> -
trunk/Modules/NetworkTopology/topologie-gen.php
r517 r548 429 429 $mytree->store(); 430 430 431 echo('Topologie byla vygenerovana.'); ?>431 echo('Topologie byla vygenerovana.'); -
trunk/Modules/NetworkTopology/topologie-img.php
r517 r548 244 244 imagedestroy($im); 245 245 } 246 247 ?> -
trunk/Modules/NetworkTopology/topologie2.php
r517 r548 153 153 //print_r($Topology->Tree); 154 154 $Topology->ProduceImage(); 155 156 ?> -
trunk/Modules/News/ImportKinoVatra.php
r542 r548 35 35 } 36 36 } 37 38 ?> -
trunk/Modules/News/ImportObecHovezi.php
r542 r548 77 77 } 78 78 */ 79 80 ?> -
trunk/Modules/News/ImportTvBeskyd.php
r542 r548 39 39 } 40 40 } 41 42 ?> -
trunk/Modules/News/ImportZdechovCzNews.php
r542 r548 43 43 } 44 44 } 45 46 ?> -
trunk/Modules/News/ImportZdechovCzRecords.php
r542 r548 43 43 } 44 44 } 45 46 ?> -
trunk/Modules/News/News.php
r541 r548 255 255 } 256 256 } 257 258 ?> -
trunk/Modules/News/NewsPage.php
r536 r548 415 415 } 416 416 } 417 418 ?> -
trunk/Modules/OpeningHours/OpeningHours.php
r534 r548 242 242 } 243 243 } 244 245 ?> -
trunk/Modules/Portal/Portal.php
r538 r548 430 430 } 431 431 } 432 433 ?> -
trunk/Modules/System/System.php
r538 r548 309 309 } 310 310 } 311 312 ?> -
trunk/Modules/TV/TV.php
r538 r548 161 161 } 162 162 } 163 164 ?> -
trunk/Modules/TV/tkr.php
r524 r548 25 25 $System->AddModule(new CableTVChennelListPage($System)); 26 26 $System->Modules['CableTVChennelListPage']->GetOutput(); 27 28 ?> -
trunk/Modules/TimeMeasure/Graph.php
r536 r548 211 211 } 212 212 } 213 214 ?> -
trunk/Modules/TimeMeasure/Main.php
r536 r548 220 220 } 221 221 } 222 223 ?> -
trunk/Modules/TimeMeasure/Measure.php
r536 r548 463 463 } 464 464 } 465 466 ?> -
trunk/Modules/TimeMeasure/Measurement/MeasureClient.php
r536 r548 28 28 } 29 29 } 30 31 ?> -
trunk/Modules/TimeMeasure/Measurement/Measurement.php
r536 r548 4 4 { 5 5 } 6 7 ?> -
trunk/Modules/TimeMeasure/Measurement/System.php
r536 r548 177 177 } 178 178 } 179 180 ?> -
trunk/Modules/TimeMeasure/TimeMeasure.php
r538 r548 51 51 } 52 52 } 53 54 ?> -
trunk/Modules/User/UserList.php
r533 r548 61 61 } 62 62 } 63 64 ?> -
trunk/Modules/WebCam/WebCam.php
r524 r548 75 75 } 76 76 } 77 78 ?> -
trunk/Modules/WebCam/webcam_refresh.php
r476 r548 17 17 Sleep($Config['Web']['WebcamRefresh']); 18 18 } 19 20 ?> -
trunk/admin/DefaultConfig.php
r507 r548 48 48 array('Name' => 'MainRouter/MangleRuleSubgroupMinPrefix', 'Type' => 'Integer', 'Default' => '28', 'Title' => 'Nejmenší prefix podsítě pro mangle pravidla'), 49 49 ); 50 51 ?> -
trunk/admin/FullInstall.php
r497 r548 2420 2420 (8, 'Příjem na sklad', 'PS');"); 2421 2421 } 2422 2423 ?> -
trunk/admin/Updates.php
r535 r548 331 331 527 => array('Revision' => 535, 'Function' => 'UpdateTo535'), 332 332 ); 333 334 ?> -
trunk/admin/index.php
r501 r548 19 19 $UpdateInterface->Updates = &$Updates; 20 20 $UpdateInterface->Show(); 21 22 ?> -
trunk/block/index.php
r524 r548 1 1 <?php 2 2 3 include_once('../Common/Global.php'); 3 4 … … 43 44 $System->AddModule(new BlockPage($System)); 44 45 $System->Modules['BlockPage']->GetOutput(); 45 46 ?> -
trunk/index.php
r473 r548 4 4 $System->PathItems = ProcessURL(); 5 5 $System->ShowPage(); 6 7 ?> -
trunk/missing.php
r524 r548 15 15 $System->AddModule(new MissingPage($System)); 16 16 $System->Modules['MissingPage']->GetOutput(); 17 18 ?> -
trunk/temp/Bills.php
r536 r548 43 43 echo($Invoice['Text'].' '.$Bill['Id'].'<br>'); 44 44 } 45 46 47 ?> -
trunk/temp/FioCVSToSQL.php
r517 r548 37 37 38 38 file_put_contents('output.sql', $Output); 39 40 ?> -
trunk/temp/mailtest.php
r457 r548 16 16 $Mail->AttachData('DataFile.txt', 'text/plain', 'Sample text ěščřžýáíé'); 17 17 $Mail->Send(); 18 19 ?> -
trunk/temp/meteo/Image.php
r487 r548 152 152 } 153 153 } 154 155 ?> -
trunk/temp/meteo/load_meteo.php
r490 r548 133 133 $I++; 134 134 } 135 136 ?> -
trunk/temp/product.php
r457 r548 38 38 'Location' => $DbRow['User'], 'Info' => $DbRow['Info'])); 39 39 } 40 41 ?> -
trunk/temp/renumbering.php
r524 r548 57 57 $System->AddModule(new Renumbering($System)); 58 58 $System->Modules['Renumbering']->GetOutput(); 59 60 ?> -
trunk/temp/user_mail.php
r524 r548 38 38 $System->AddModule(new Transform($System)); 39 39 $System->Modules['Transform']->GetOutput(); 40 41 ?>
Note:
See TracChangeset
for help on using the changeset viewer.