Commit Graph

420 Commits

Author SHA1 Message Date
paul edeaf9cbd7 Tweak Makefile for renaming of the import file to campcaster-import 2007-01-16 01:29:43 +00:00
paul 5b5a0c10be Renaming the import file to campcaster-import, part 2 of 2 2007-01-16 01:28:08 +00:00
paul 5b0c9c2c36 Renaming the import file to campcaster-import, part 1 of 2 2007-01-16 01:27:29 +00:00
paul bd72bdd71c Added LINK mode to the import script and an explanation of the two modes. 2007-01-16 01:25:40 +00:00
paul a1d90f6bbc Fix to prevent double-import in the Web interface. Part of #1805 2007-01-15 23:12:54 +00:00
fgerlits 4f49f64e63 minor edit: standardized the include guards (there were 2 different kinds) 2007-01-15 12:29:07 +00:00
fgerlits 89fc941937 made the Cancel button work correctly for RDS entries (part of #722) 2007-01-15 12:07:41 +00:00
fgerlits 6cab754062 load and save the RDS settings from the config file (part of #722) 2007-01-15 10:56:14 +00:00
fgerlits 2046cb8b2b more RDS stuff (part of #722) 2007-01-12 15:58:08 +00:00
paul 4183f8921f Added option to copy (--copy) the imported files to disk for the case when you use removable media. Made the output better. Added error check. 2007-01-12 06:15:07 +00:00
paul 7aaabb2165 Minor code formatting tweaks. 2007-01-12 06:13:13 +00:00
paul a11d39d8f6 Another fix for bug #2114 - after command line import, a file could not be added to the live mode. There were two problems: an incorrect API call, and the new feature which only makes symlinks to files (to fix the double-disk space problem) caused problems because files_exists() didnt work anymore. 2007-01-12 06:11:35 +00:00
paul 36b6fa83e0 Refactored the import script. Now you dont need to specify whether something is a directory or a file, and you can list multiple files/directories on the command line. It also works straight from PHP so you can do: php import.php ...if you want. 2007-01-11 23:28:05 +00:00
paul 623be37d8a Fix for the bug where you could not upload files (the first part of bug #2114). Converted StoredFile into a real class that mapped the database table properly. Renamed some functions to be consistent with each other and with coding standards. 2007-01-11 19:24:45 +00:00
paul c59a73f506 A web interface to test the XMLRPC for the storage server. 2007-01-11 19:17:44 +00:00
fgerlits ce0a9be6dc small bugfix; part of #722 2007-01-11 16:59:09 +00:00
fgerlits f586f92dbb added some RDS-related code; see ticket #722 2007-01-11 16:45:43 +00:00
paul 43755b90cc Import script now prevents double-import. 2007-01-10 17:03:47 +00:00
paul e910361aa0 Combined the RawMediaData class into the StoredFile class in order to simplify things. Fixed a bug related to the variable NAME (filename - which is now called FNAME) in the StoredFile class. Added code documentation. 2007-01-10 16:55:17 +00:00
paul be48f1634f Completed upgrade script for saving MD5 values for each file 2007-01-10 16:38:34 +00:00
paul 997814e78a Added md5 checksum to FILES table in the database. The XML-RPC function call storeAudioClipOpen now returns error code 888 if the file uploaded is a duplicate of an existing file. Started an upgrade script, but still needs a little bit of work. Removed unused className argument to StoredFile::recall functions. Fixed xr_cli_test.php to use Console_GetOpt PEAR class and fixed code formatting. Fixed code documentation. Fixed some function names to conform to coding standards. 2007-01-09 21:11:45 +00:00
paul 1a8610b37b ArchiveServer install: Fixed these files to use the new common install code. 2007-01-09 17:32:34 +00:00
paul 2e37fb9c66 StorageServer install: Added more error checking and better code resuse and also fixed a bug where a table was not removed on uninstall because the tables were removed in the wrong order. Install of scheduler was moved to the products/scheduler/bin directory. 2007-01-09 17:30:46 +00:00
paul 219c8cc06f Centralized the install/uninstall operations for the scheduler into a set of PHP files. This will make it easier to maintain the database because 1) the code is now in a scripting language which means, for instance, that writing upgrade scripts will be easier and also allows these install scripts to use the same infrastructure and code as the storageServer, 2) it allows the developers to see the database creation all in one place 3) simplifies and speeds up the C++ code. 2007-01-09 17:26:53 +00:00
tomash 1cbc14025c #1855 copying of media files replaces by making symlink in import script 2007-01-08 00:41:32 +00:00
fgerlits 558d968e5f fix for ticket #2074, part 1 of 3 2007-01-05 17:28:05 +00:00
paul e4d3179227 Beginning of fix for #2106 - Scheduler database tables are created in a different way than all other tables. 2007-01-03 22:47:25 +00:00
paul b23c11c0b8 Fixed parameters passed to the various recallByGunid() functions- they no longer require the GreenBox parameter. Some functions had been switched, and some had not, which lead to some crashes. 2007-01-03 22:46:26 +00:00
paul 425212bfb8 Possible fix for #2100 - scheduler user is not created. There is now a more verbose output when this step is taken, and also there were previous steps, that if they failed, would prevent this step from happening; so this has been fixed as well. Converted more functions to static functions because thats what they were in the first place...they were just pretending to be member functions. 2006-12-20 02:46:29 +00:00
paul a3db3c3865 Remove old LS references 2006-12-20 02:33:13 +00:00
paul f9839006e3 Better error message when you cant connect to database. 2006-12-20 02:29:10 +00:00
paul 3239208c60 Fix for bug #2098 - warnings in Web interface 2006-12-19 20:15:14 +00:00
paul 5b4f673c04 Fix for bug #2099 - Cannot load or save preferences 2006-12-19 20:03:52 +00:00
paul ae1460a3c4 Switched functions from protected to public 2006-12-16 18:32:22 +00:00
paul e57e29675b Accidentally checked in local config value 2006-12-16 18:31:47 +00:00
paul 4733682a62 Refactored Alib to reveal its true nature: a bunch of static functions inside of classes. This makes it much easier to understand what is going on, and removes 4 layers of class heirarchies (now only 4 left). There are now two important global variables: CC_DBC, the database connection, and CC_CONFIG, the config variables. These used to be passed around to all classes, but since they are always the same they should be global. Refactored the StorageServer install scripts to live outside of the classes. They now live in the storageServer install scripts. A lot of functions in the StorageServer have become static as well, but there are definitely more that I didnt get to. Lots of code cleanup as well. This is a big update. 2006-12-16 06:36:22 +00:00
mark 2ae9d1ff2e Always initialize the abort pointer, so that our tests won't fail if the preloader isn't used. 2006-12-15 10:20:05 +00:00
mark b2688b8d3c Make safer. 2006-12-14 12:14:25 +00:00
mark e381e09af8 Forgot this line. 2006-12-14 12:03:12 +00:00
mark 12cfe650b9 Improvement for the preloading system: Now it is possible to abort running Preloader instances. This helps greatly with the Live Mode, when items are reshuffled before playing.
Took a bit longer than expected, since it was more complicated to implement than I had originally thought. On the upside, I've learned more tricks about GStreamer, which is a good thing (tm).

Fixes #2087
2006-12-14 11:59:00 +00:00
localizer e169e5df5c automated localization update 2006-12-14 00:17:01 +00:00
paul 79fa277dcc Added documentation 2006-12-08 04:37:30 +00:00
paul 4a915f241f Added documentation 2006-12-08 04:36:59 +00:00
paul c526cb1830 Code cleanup, add extra check about scheduler startup script, add documentation. 2006-12-08 04:36:29 +00:00
paul a56a304c19 Get rid of a warning 2006-12-08 04:34:39 +00:00
paul f98af0ace0 Code formatting 2006-12-08 04:33:35 +00:00
paul 55688910d5 Formatting, and making a note about a bug 2006-12-08 04:33:02 +00:00
paul 482d0052b3 Added public/private/protected/static to functions 2006-12-08 04:32:12 +00:00
paul 8dd2119496 Added public/private/protected/static to functions 2006-12-08 04:31:42 +00:00
paul 985eeab08c Added public/private/protected/static to functions 2006-12-08 04:31:20 +00:00
paul 3e5f74e29e A more readable secondsToPlaylistTime() function 2006-12-08 04:30:22 +00:00
paul c1d4c33b31 Added public/private/static definitions to functions 2006-12-08 04:28:50 +00:00
fgerlits af047436e8 Micz's new "your logo here" image 2006-12-07 10:29:40 +00:00
mark eb69bd44c8 Additional comments and code cleanup. 2006-12-07 08:17:18 +00:00
localizer f1c7e18c45 automated localization update 2006-12-07 00:16:00 +00:00
tomash e71663c2e0 Hub setup script improved (can be installed along to studio etc.) 2006-12-06 20:06:54 +00:00
fgerlits cdfd1db671 don't resize the station logo image if we don't have to 2006-12-06 16:42:04 +00:00
paul b3d8e4bf76 Fix for bug #2080 - Transfers window broken in the html interface 2006-12-06 16:07:19 +00:00
mark 6596d67f3b Add API docs for preloader. 2006-12-06 08:35:55 +00:00
fgerlits 94e1f0bc53 fixed #2072, this time possibly for real 2006-12-05 19:25:50 +00:00
fgerlits 01ee4ec06d moving the script so that it will be copied by `make install` 2006-12-05 16:10:57 +00:00
fgerlits b56fd1cec2 fixed #2017 2006-12-05 15:35:29 +00:00
tomash 4ea731e572 #2017 executable for changing scheduler password in the storageServer added. 2006-12-05 13:47:07 +00:00
paul a34b4106e2 Updated the version number to 1.1.1 2006-12-04 21:26:29 +00:00
paul e98e7d8761 Update version number 2006-12-04 17:36:36 +00:00
fgerlits 5ceb0b2567 playlists-within-playlists can make the playlist label longer 100 characters 2006-12-04 12:03:30 +00:00
fgerlits d45efa6e23 Fixed #2017. 2006-12-04 11:59:01 +00:00
fgerlits 0fb1c29f2c updated the credits 2006-12-04 10:26:52 +00:00
paul 389227ab6f Prevent users from removing the SCHEDULER user or changing the password for it. 2006-12-03 22:23:48 +00:00
paul 460ea764c3 Updated CREDITS 2006-12-02 16:38:15 +00:00
paul 888086a345 Fix for ticket:1397 - replace CAMP logo with YOUR LOGO HERE 2006-12-02 15:43:29 +00:00
fgerlits 074b08841e fixed the Mutex class to make it thread-safe (I hope) 2006-12-02 08:30:50 +00:00
fgerlits 05beb4d5d0 prettified the mutex code 2006-12-01 20:25:01 +00:00
paul 38d5c776cd Remove the preload lock if there is an error initializing the playlist. 2006-12-01 19:55:21 +00:00
paul 3b481ec39c Added locking to prevent race conditions 2006-12-01 19:49:33 +00:00
fgerlits 75d7852eb8 this line made no sense 2006-12-01 17:57:29 +00:00
fgerlits 6c48e9d63d minor edit: breaking up some overlong lines 2006-12-01 17:53:38 +00:00
fgerlits 93dbbeaa6d possible fix for the scheduler bug 2006-12-01 17:49:48 +00:00
paul e306a94e54 Better debug messages. 2006-12-01 17:44:56 +00:00
paul b5abe48ea6 Fix for bug #2068 - removing or rescheduling a playlist will still play the playlist because the scheduler is not signalled. 2006-12-01 17:26:32 +00:00
mark 426b40f2ce Add error message. 2006-12-01 17:08:35 +00:00
paul 2a50ad1cc7 Better debug messages 2006-12-01 16:36:55 +00:00
fgerlits aafdd144d2 fixed #2067 2006-12-01 16:27:30 +00:00
fgerlits a38ebdeadd fixed some Debug.h-related bugs which prevented to code from compiling
in non-debug mode
2006-12-01 14:54:14 +00:00
paul c1c32bceb7 Another fix for bug #1998 - umask was not set correctly so that the web process can check the status of the scheduler (PID is stored in a file). 2006-12-01 03:37:28 +00:00
paul dd8bff3182 Fix for #1998 - the problem occurred when you start the scheduler more than once. 2006-11-30 18:53:04 +00:00
fgerlits 86243e1d55 fixed a typo in [2694] 2006-11-30 18:53:01 +00:00
fgerlits d1e8dbce87 possible fix for [2694] 2006-11-30 18:48:29 +00:00
fgerlits 221a45419e maybe fixed the scheduler bug (#2034?) 2006-11-30 18:27:24 +00:00
paul 9a4c0ca65f Should fix #2061 2006-11-30 18:10:50 +00:00
tomash 2e99dd0509 Hidden locking problem fixed in file uploads (storageServer and hub) + more network error codes marked as resumable. 2006-11-30 17:25:23 +00:00
tomash 9166fc981a minor thing - improved error msg 2006-11-30 17:20:59 +00:00
fgerlits 15bc76462b added some debug messages 2006-11-30 15:31:34 +00:00
fgerlits db22b940e5 fixed #2023 2006-11-30 14:11:09 +00:00
mark 6b4bd54191 Add some debug output. 2006-11-30 13:35:45 +00:00
mark 2eb30be97a Fixed Debug.h so that it can be used in more than one class at a time. Also added include guard.
Fixes most of #1922
2006-11-30 13:31:58 +00:00
fgerlits 3fd1e71d51 fixed #2044 2006-11-30 12:39:32 +00:00
fgerlits fafbf6e87b undo of [2678] 2006-11-30 11:51:41 +00:00
mark 79723bc653 fix typo in comment 2006-11-30 10:38:08 +00:00
mark ec217a1a71 Added an audioplayer preload call in the initialization, which hopefully speeds things up. Also increased init-time to 10 seconds.
Refer to #2043
2006-11-30 10:34:55 +00:00