Commit Graph

247 Commits (668f5e74f7600ea6988d9db744d3dbfc730653f5)

Author SHA1 Message Date
Arthur Portugal 1eb1d8a2b1 Fixed the file mail.lib.inc.test.php, adding ob_start() CT#191 16 years ago
Arthur Portugal 547cb3d068 FIxed the file legal.lib.test.php, removed the mock objects CT#191 16 years ago
Arthur Portugal 8ecf747d74 Fixed the file export.lib.test.php CT#191 16 years ago
Ivan Tcholakov 4260f29b98 Feature #272 - A new customized function api_html_to_text() for stripping html-tags has been added in the internationalization library. 16 years ago
Ricardo Rodriguez 42654be7aa Fixed the code of test in public function testRecentModifiedFIleTime 16 years ago
Ricardo Rodriguez 41a63cea35 Modified the test fileUpload fixed the exceptions 16 years ago
Ivan Tcholakov 0912d9b9a8 Feature #272 - The internationalization library: A minor correction in a test. 16 years ago
Ivan Tcholakov 85f1a4f977 Feature #272 - The PHP function fgetcsv() depends on the OS locale setting. When the file system encoding is different than the encoding of the CSV-file, then the imported data is damaged. For solving this problem, two new functions have been introduced in the internationalization library - api_str_getcsv() and api_fgetcsv(). 16 years ago
Ivan Tcholakov 126bc0b053 Feature #272 - Various improvements and unification about dealing with the system encoding, the text direction, the interface language. 16 years ago
Julio Montoya 8586fe0072 Tests updates 16 years ago
Ivan Tcholakov d8f4aa15f6 Feature #272 - Various corrections about mailing functionality. 16 years ago
Ricardo Rodriguez b95a59e6c9 Modified the test of the blog's test file to eliminated the exceptions, Modified the load_global adding user admin by default. 16 years ago
Ivan Tcholakov c923639275 Feature #272 - The intenationalization library: Adding code for language and encoding detection support. 16 years ago
Julio Montoya 315bea38f2 Fixing whoisonline function 16 years ago
Julio Montoya 60c2a32c0b Fixing whoisonline function 16 years ago
Ricardo Rodriguez 8ec98d0b24 Added new modification at the test function file of simpletest 16 years ago
Yannick Warnier b7b013b0ed dummy change 16 years ago
Arthur Portugal 42cfb8a71f FIxed file calendar.lib.test.php without exceptions CT#191 16 years ago
Ricardo Rodriguez 0328fd233f Modified, Added, Deleted and Fixed tests functions. 16 years ago
Ricardo Rodriguez 4f08a1d15e Modified function change exit and die by return false and Fixed test function 16 years ago
Julio Montoya b79ffbe4c6 Group improvements + message improvements see #5611 16 years ago
Ricardo Rodriguez 6de0938e43 Modified die() for return false in function blog.lib.php in function display form users unsubscribe , Fixed test functions and Edited the all.test.php 16 years ago
cvargas e969a4161a merge 16 years ago
Yannick Warnier d87d284257 Removed unnecessary mock object lib loading 16 years ago
Yannick Warnier 847ad68d3a Use valid prefix for databases 16 years ago
Yannick Warnier ec83fff578 Removed unnecessary mock object lib loading 16 years ago
Ivan Tcholakov 1e4c271941 Feature #306 - Upgrading the function api_check_password(). Comments are added. 16 years ago
Ivan Tcholakov 942f562e44 Feature #306 - Internationalization API: Implementation of two new functions api_chr() and api_ord(). 16 years ago
Ivan Tcholakov c81137da87 Feature #306 - Removing the function replace_accents(). This function is not needed anymore. 16 years ago
Ivan Tcholakov fd9314ca09 Feature #306 - Removing the function remove_accents(). It is useless in contemporary code. 16 years ago
Ivan Tcholakov 66d5d81ec3 Feature #5397 - Replacing mysql_result() with Database::result(). 16 years ago
Ivan Tcholakov bb90a73e87 Feature #5397 - Replacing mysql_real_escape_string() with Database::escape_string(). 16 years ago
Ivan Tcholakov e5c9dddad1 Feature #5397 - There are two methods in Database class that do the same thing: Database::get_last_insert_id() and Database::insert_id(). Let us deprecate Database::get_last_insert_id(), it is longer and it doesn't follow the intuitive pattern for replacement mysql_* --> Database::*. Replacing Database::get_last_insert_id() with Database::insert_id(). 16 years ago
Ivan Tcholakov ada9c84124 Feature #5397 - Replacing mysql_fetch_array() with Database::fetch_array(). Installation scripts and some other files are skipped in this transaction. 16 years ago
Ivan Tcholakov f87ebd4795 Feature #5397 - Replacing mysql_fetch_object() with Database::fetch_object(). Installation scripts are skipped in this transaction. 16 years ago
Ivan Tcholakov de0ec5ca3d Feature #306 - Line endigs cohrrence, Part 3: Converting \r\n line endings (Windows style) to \n (Unix style) in php, html, js, xml, txt files. 16 years ago
Ivan Tcholakov 514484dc21 Backed out of changeset 8493:a9efb5e0c834 16 years ago
Yannick Warnier 47022680ce Accept gzopen64() too as a test of the zlib extension load 16 years ago
Ivan Tcholakov df06189daf Feature #306 - The internationalization library: The function api_refine_language_id() ahs been renamed as api_purify_language_id(). I hope, the new name is more understandable. 16 years ago
Ivan Tcholakov 6b143ae62f Feature #306 - Fixing the test for the function api_get_valid_language(). 16 years ago
Ivan Tcholakov 626d44cffd Feature #306 - Database records have been opened for Occitan and Traditional Chinese languages. 16 years ago
Ivan Tcholakov 2041d470ae Feature #306 - Fixing the function api_get_language_isocode() so it could return correct results using "dirty" language identifiers. The languages occitan, trad_chinese, trad_chinese_unicode have no corresponding records in the database. I have to open them. 16 years ago
Ivan Tcholakov 11e58b71bc Feature #306 - Moving the function api_get_language_isocode() in the internationalization library. Deprecation of Database::get_language_isocode(). Making a formal test for api_get_language_isocode(). At the moment the test fails, some expexted values are not returned. This has to be fixed. 16 years ago
Ivan Tcholakov 7373315387 Feature #306 - The function api_validate_language() has been renamed as api_get_valid_language(). This new name is accurate, the function is not a validator, but a filter. 16 years ago
Ivan Tcholakov 24c89663c3 Feature #306 - Replacing the function api_sql_query() with Database::query() within all the system testing units. 16 years ago
Ivan Tcholakov 1691a61b05 Feature #306 - Removing the formal test for the function api_sql_query(). 16 years ago
Ivan Tcholakov 302eb4dc0e Feature #306 - Replacing everywhere the function api_store_result() with Database::store_result(). 16 years ago
Ivan Tcholakov 7409c475af Feature #306 - Fixing logic about encoding aliases recognition in the internationalization library. 16 years ago
Ivan Tcholakov c6b8d1ff63 Feature #306 - Removing the obsolete library file media.lib.php. 16 years ago
Ivan Tcholakov 965f0ad605 Feature #306 - Trimming totally trailing whitespace in php-source files, part 3 (final), 161 files. 16 years ago