paul
|
ec3485fe52
|
Get rid of unneeded data copying ( = = someFunction()). Changing various function names to be more obvious and consistent.
|
2006-11-23 07:10:35 +00:00 |
paul
|
6a39d99bfd
|
Added public/private/static modifiers to functions. Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 07:08:22 +00:00 |
paul
|
714e853fae
|
Changing various function names to be more obvious and consistent. Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 07:07:08 +00:00 |
paul
|
b4cecf725d
|
Added public/private/static modifiers to functions. Added function getAllMetadata(). Commented out function updateRecord() which doesnt seem to be used.
|
2006-11-23 07:05:15 +00:00 |
paul
|
ec562b0165
|
Added public/private/static modifiers to functions. Changing various function names to be more obvious and consistent. Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 07:01:08 +00:00 |
paul
|
37657536be
|
Added public/private/static modifiers to functions. Changing various function names to be more obvious and consistent. Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 06:59:44 +00:00 |
paul
|
cb921c1b02
|
Changing various function names to be more obvious and consistent. Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 06:57:22 +00:00 |
paul
|
7425aa0654
|
Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 06:56:32 +00:00 |
paul
|
ad9ab95c05
|
Fix for changing file names to match class names. Changing various function names to be more obvious and consistent. Get rid of unneeded data copying ( = = someFunction()).
|
2006-11-23 06:55:54 +00:00 |
tomash
|
007b5caa6c
|
#2011 minor fix + typo fixes
|
2006-11-21 23:23:33 +00:00 |
paul
|
001e50bf08
|
Fix for bug #2003 - CREATE NEW PLAYLIST broken
|
2006-11-21 18:20:46 +00:00 |
paul
|
dcd82ff474
|
LS->CC renaming. Removed special handling for PHP5 since we now assume we use PHP5.
|
2006-11-21 16:20:37 +00:00 |
paul
|
a3bd7c9d73
|
Fixed function call names for renamed functions.
|
2006-11-21 16:19:53 +00:00 |
paul
|
d9f5ba0335
|
Fixes for function renaming (public/private stuff). Renamed getMdataValue() to getMetadataValue(), renamed setMdataValue() to setMetadataValue(). Fixed calls to BasicStor::getMetadataValue() to use the new return value properly.
|
2006-11-21 16:19:19 +00:00 |
paul
|
f3a8175815
|
Removed special cases for PHP5 handling.
|
2006-11-21 16:13:17 +00:00 |
paul
|
a781d02678
|
Changes for new return value of bsGetMetadataValue(). Fixes for function renaming. Removed extra data copying for error checking (the $foo = $r = myFunc() stuff).
|
2006-11-21 16:11:27 +00:00 |
paul
|
883c6037b6
|
LS->CC renaming. Removed special handling for PHP5 since we now assume we use PHP5.
|
2006-11-21 16:04:21 +00:00 |
paul
|
d41cffbc08
|
Fixed function call names for renamed functions.
|
2006-11-21 16:01:16 +00:00 |
paul
|
1a0cc368f0
|
Did some function renaming for public/private issues. Changed playlistIsAvailable() to not check if the playlist exists on disk (I think we can assume that it does if something is asking about it), it only checks if it is being edited now. This change was made for optimization purposes.
|
2006-11-21 16:00:50 +00:00 |
paul
|
716b1d3a8c
|
Renamed the function getMetadataValue() to getMetadataValueWithAttrs() - this function actually isnt used anywhere. Created a new getMetadataValue() which just returns the value you are looking for without any extra stuff.
|
2006-11-21 15:55:39 +00:00 |
paul
|
b5f2262b0a
|
Fixed function call names for renamed functions.
|
2006-11-21 15:53:30 +00:00 |
paul
|
674f08e210
|
Fixed function call names for renamed functions.
|
2006-11-21 15:51:52 +00:00 |
paul
|
2824643ca3
|
Fixed function call names for renamed functions.
|
2006-11-21 15:51:34 +00:00 |
paul
|
f494b34d8f
|
Fixed calls to Greenbox::bsGetMetadataValue() to use the new return value.
|
2006-11-21 15:50:37 +00:00 |
paul
|
94a0be4e6a
|
Added documentation, removed function _idFromGunid(), which was not used.
|
2006-11-21 15:47:48 +00:00 |
paul
|
012d344db2
|
Added public/private status to functions. Changed _localGenSearch() to take advantage of new Greenbox::bsGetMetadataValue() function which allows you to pass an array of values to fetch.
|
2006-11-21 15:46:55 +00:00 |
paul
|
644be7c50c
|
Removed underscores from function names (that indicate private functions) for functions that were actually public. Changed bsGetMetadataValue() to allow an array as an argument to fetch multiple values at once.
|
2006-11-21 15:43:04 +00:00 |
fgerlits
|
11f4d2899b
|
merging the temporary-2466 branch back to the trunk;
this fixes #1953
|
2006-11-16 08:08:27 +00:00 |
tomash
|
1b89448983
|
minor fixes + minor code reformatting
|
2006-11-16 00:26:50 +00:00 |
tomash
|
87715a4207
|
minor fix
|
2006-11-15 01:36:32 +00:00 |
tomash
|
fa0f1ffbff
|
Fixed return structure of getTransportInfo.
|
2006-11-15 01:23:07 +00:00 |
paul
|
0d9129d16c
|
got rid of =& when constructing objects
|
2006-11-14 19:10:22 +00:00 |
paul
|
bb00be70bb
|
Started to convert code to PHP5 using public/private/protected/static and __construct() method, got rid of =& when constructing objects. Improved documentation in many places. Commented out functions that are no longer in use. Got rid of double-copy operations when checking for errors (e.g. $foo = $r = myMethod()). Tweaked code here and there to fit coding conventions.
|
2006-11-14 19:09:20 +00:00 |
tomash
|
c1253836d4
|
#1704 restoreBackup XMLRPC fixed
|
2006-11-09 14:38:59 +00:00 |
tomash
|
fc866bbfb7
|
#1708 fixed return struct of the restoreBackupCheck method
|
2006-11-09 01:38:04 +00:00 |
tomash
|
42891b2059
|
minor fixes (prevention of warnings)
|
2006-11-03 21:07:06 +00:00 |
tomash
|
a3144ce333
|
#1878 searchMetadata generalized to multifield orderby
|
2006-11-02 10:09:46 +00:00 |
paul
|
ea1982a2ea
|
Fix for bug #1909 - ALBUM info wasnt imported for OGG files
|
2006-10-31 18:30:52 +00:00 |
tomash
|
20d6342370
|
#1903 fixed handling html special characters
|
2006-10-31 16:20:24 +00:00 |
paul
|
593e499a96
|
Changed import script and the HTML UI to use the same metadata import mechanism. This should fix #1819.
|
2006-10-25 20:56:42 +00:00 |
paul
|
cae4c15b39
|
Fixed some formatting to comply with style guidelines.
|
2006-10-25 20:40:05 +00:00 |
paul
|
55fe551a4a
|
Make sure not to double-escape strings used in SQL. Fixed some formatting to comply with style guidelines.
|
2006-10-25 20:38:46 +00:00 |
paul
|
4cd4c8cbf5
|
Fixed some formatting to comply with style guidelines.
|
2006-10-25 20:37:57 +00:00 |
paul
|
9d98920a49
|
Make sure not to double-escape strings used in SQL. Fixed some formatting to comply with style guidelines.
|
2006-10-25 20:36:52 +00:00 |
paul
|
27af739fe8
|
Fixed some formatting to comply with style guidelines.
|
2006-10-25 20:35:59 +00:00 |
paul
|
6f2013845c
|
Make sure not to double-escape strings used in SQL. Fixed some formatting to comply with style guidelines.
|
2006-10-25 20:34:28 +00:00 |
tomash
|
39ee84d0f3
|
#1882 escaping added
|
2006-10-20 16:30:18 +00:00 |
tomash
|
8410881858
|
Renaming to campcaster in storageServer test files.
|
2006-10-20 14:54:42 +00:00 |
tomash
|
0caf92b44e
|
#1872 added 'source' to search result structure
|
2006-10-20 14:51:45 +00:00 |
paul
|
fe31d2dfab
|
Renaming top-level livesupport directory (/trunk/livesupport) to campcaster (trunk/campcaster).
|
2006-10-19 14:55:07 +00:00 |