aboutsummaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-28 19:17:36 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-28 19:17:36 +0000
commit7ddd9521b3f3a397da3b0a6b56238d31414eb4be (patch)
tree6eb6a9a51db5fa0f5d3cc2ec6de29b9e258b12a1 /CHANGES.txt
parentbd3484417d170e62bc94e9db81d4ad37e8ddee6a (diff)
downloadelgg-7ddd9521b3f3a397da3b0a6b56238d31414eb4be.tar.gz
elgg-7ddd9521b3f3a397da3b0a6b56238d31414eb4be.tar.bz2
Standardized code in all of core, not including language files, tests, or core mods.
git-svn-id: http://code.elgg.org/elgg/trunk@7124 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt31
1 files changed, 29 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b24013d45..5709872c7 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -8,8 +8,35 @@ Version 1.8.0 (Jackie)
Generic API changes:
* Added elgg_instanceof().
* Added remove_subtype() and update_subtype().
- * Added elgg_format_url()
-
+ * Added elgg_format_url().
+ * ElggDiskFilestore supports non-user owners.
+
+ Deprecated APIs:
+ * ElggAccess::get_ignore_access() by ElggAccess::getIgnoreAccess().
+ * ElggAccess::set_ignore_access() by ElggAccess::setIgnoreAccess().
+ * ElggCache::set_variable() by ElggCache::setVariable().
+ * ElggCache::get_variable() by ElggCache::getVariable().
+ * ElggDiskFilestore::make_directory_root() by ElggDiskFilestore::makeDirectoryRoot().
+ * ElggDiskFilestore::make_file_matrix() and ElggDiskFilestore::user_file_matrix() by
+ ElggDiskFilestore::makeFileMatrix().
+ * ElggDiskFilestore::mb_string_split() removed.
+ * ElggEntity::initialise_attriutes() by ElggEntity::initializeAttributes(). Same for
+ all sub classes of ElggEntity.
+ * ElggFileCache::create_file() by ::createFile().
+ * ElggFileCache::sanitise_filename() by ::sanitizeFilename().
+ * ElggMemcache::make_memcache_key() by ::_makeMemcacheKey().
+ * ElggGroup::initialise_attributes() by ::initializeAttributes().
+ * ElggPlugin::initialise_attributes() by ::initializeAttributes().
+ * XMLRPCCall::parse() by XMLRPCCALL::_parse().
+ * __get_annotations_calculate_x() by get_annotations_calculate_x().
+ * __get_entities_from_annotations_calculate_x() by get_entities_from_annotations_calculate_x().
+ * __php_api_error_handler() by _php_api_error_handler().
+ * __php_api_exception_handler() by _php_api_exception_handler().
+ * __elgg_php_error_handler() by _elgg_php_error_handler().
+ * __elgg_php_exception_handler() by _elgg_php_exception_handler().
+ * __process_element() by _process_element().
+ * All __elgg_session_*() by _elgg_session_*().
+
UI/UX API changes:
* Added elgg_push_breadcrumb(), elgg_pop_breadcrumb(), and elgg_get_breadcrumbs().
* Added navigation/breadcrumbs.