aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* explicitly specifying function arguments to be voidHEADsvnmasterknarf2012-12-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@95 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* declare function to avoid compiler warningknarf2012-12-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@94 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* remove unused variablesknarf2012-12-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@93 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* remove unused functionknarf2012-12-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@92 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Add missing #includeeschnett2012-10-24
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@89 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* This patch lets the internal list not grow if a file was already addedknarf2009-10-09
| | | | | | | | | | | | | | | | | | | to that list. It is in some way not the ideal way of doing this, because it does not let the advertising thorn change e.g. the mime type and other information like the description, but this would require either making the list entries non-const (which I refrain from because that would probably be a big change, although it would probably be the best path to go), or it would require to remove the entry and add a new - which is possible, but has a potential of breaking something which does not expect entries to be removed and it might slow down things if that list is long. So, this patch only looks for an entry with the filename of an advertised file and if there is already one, it does not touch it, nor is a new entry added. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@78 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Add missing #include <stdlib.h>schnetter2009-06-23
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@76 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Correct segmentation fault.schnetter2009-06-22
| | | | | | | Some time names are still parsed wrong. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@75 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Add missing #include <stdio.h> statement.schnetter2004-12-30
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@65 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Switch back to using Util_snprintf() which has been fixed now.tradke2004-12-21
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@64 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Andre Werthmann's code to provide a webpage with CCTK timer data.tradke2004-12-20
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@63 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* See bug 1715swhite2004-06-01
| | | | | | | | Changed a couple of stray calls to 'exit' to CCTK_WARN( 0, ... ), rewrote code to avoid another. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@60 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Pursuant to bug 1715swhite2004-06-01
| | | | | | | Made to compile more cleanly with Intel 7 git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@59 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Untabified.goodale2004-05-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@58 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Untabified. Please try to adhere to the Cactus coding guidelines whengoodale2004-05-17
| | | | | | | modifying or adding files. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@57 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Changed HTTPD function names in exported header files to be in betterswhite2004-05-05
| | | | | | | | | | | | | | conformance with Cactus standards: From To ---- -- HTTP_Send_OK_Header HTTP_SendOKHeader HTTP_Send_OK_Refresh_Header HTTP_SendOKRefreshHeader HTTP_Major_Version HTTP_MajorVersion HTTP_Minor_Version HTTP_MinorVersion HTTP_Arg_Name HTTP_ArgName git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@55 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Addresses Cactus bug 923swhite2004-04-19
| | | | | | | | | | | | | | | | | | | | | Made the download list to be organized by variable, then by data output type, then by slice. To facilitate list manipulation, added temporarily a list module 'PtrList', which perhaps may prove of more general use in the future. Pursuant to Cactus bug 907 Added parameter HTTPExtra::viewport_refresh_seconds to send Refresh header to web browser. Made ViewPort window to respond to viewport_refresh_seconds parameter General HTML improvements...checked with Amaya and lynx. Re-organized CSS info in HTTPD web pages. Got rid of httpuMimeType code which didn't do anything. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@54 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Made HTTPD to correctly describe interface by INCLUDE HEADER mechanism.swhite2004-04-13
| | | | | | | | | | | | | | | | | | Changed internal names of http_Auth.h http_Cookies.h http_Steer.h http_Content.h so that HTTPD thorn developers will be required to use this interface, rather than incorrectly explicitly including the source header files. * Protected SString against C++ name mangling * Gave exported functions the HTTP_ prefix * Wrote doc/Content.h * Fixed bug that disabled some steering functionality git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@53 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* tidyingswhite2004-04-07
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@52 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Various HTML tweeks. Made to load with Amaya.swhite2004-04-07
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@51 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* more stragglersswhite2004-04-07
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@49 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* spelling correctionrideout2002-11-28
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@46 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Missing include fileallen2002-06-02
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@42 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Include missing header files and prototypes.tradke2002-05-07
| | | | | | | This closes PR CactusConnect/1023. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@41 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Scott's change for making the jpeg images clickable.tradke2002-03-06
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@39 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Fixed compiler warning.tradke2002-01-07
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@36 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Callback functions, which serve registered pages, take a 'const cGH *'tradke2002-01-04
| | | | | | | argument now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@35 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Bugfix using the message board.tradke2001-11-13
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@34 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Fixed const pointer issue in the advertised file structure.tradke2001-10-30
| | | | | | | Fixed warnings on unused arguments. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@33 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Removed unused variable.tradke2001-09-12
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@32 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Making rcsid strings constant - PR 669.goodale2001-05-10
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@28 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* CCTK_FILEVERSIONallen2001-05-06
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@27 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Removed static function GetHostName(), call Util_GetHostName() instead.tradke2001-03-05
| | | | | | | This fixes problems if gethostbyname() returns NULL. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@26 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Fixing a few warnings (lots left) and the FILE_VERSIONsallen2001-02-24
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@25 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Fixing format string bug.goodale2000-12-12
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@23 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* w2k needs winsock2.h included to find gethostname.goodale2000-12-12
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@22 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Fix for stupid bug.goodale2000-11-13
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@21 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Typoallen2000-11-08
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@20 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Adding page for processor information, not fully tested ...allen2000-11-08
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@19 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Adding the GetHostName function. We should probably move this into utils.goodale2000-11-08
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@18 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Routines to collect data about al hosts in cactus run.goodale2000-11-08
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@17 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Make the height of jpgs 100 pixels to match the width ... this will give the ↵allen2000-11-04
| | | | | | wrong shape box for domains which are not square, but at the moment it is giving the wrong shape for square domains. Needs to be fixed properly using coordinates for scaling, or there needs to be a scale parameter in IOJpeg. Unfortunately there doesn't seem to be a scale parameter for images in HTML git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@16 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Just making the message board table widerallen2000-11-04
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@15 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Make jpegs always width 100 using HTML image sizeallen2000-10-16
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@14 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Add right paths. Thought I had already committed this.allen2000-09-28
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@13 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Nicer screen when no images are there to viewallen2000-09-23
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@12 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Changes necessary for jpegs under NT.goodale2000-09-22
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@11 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Changed typenames of the advertised file stuff.tradke2000-09-21
| | | | | | | Added unistd.h to include list. git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@10 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Added additional arguement to HTTP_ContentHeaderallen2000-09-21
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@9 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1
* Added viewportallen2000-09-20
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPDExtra/trunk@8 61ea717e-8e0c-4c3c-b38e-e9c67f54f1f1