aboutsummaryrefslogtreecommitdiffstats
path: root/whats/cooking
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2009-12-03 22:26:05 +0100
committerBjörn Gustavsson <[email protected]>2009-12-04 15:12:05 +0100
commita8aab492a6a841161e7a00abbe4779409158befb (patch)
treebbc5db886b135518dfc702e93a39c22c2e909e67 /whats/cooking
parentf226ff725e0f901d796bb0b41527d4167f719be5 (diff)
downloadotp-a8aab492a6a841161e7a00abbe4779409158befb.tar.gz
otp-a8aab492a6a841161e7a00abbe4779409158befb.tar.bz2
otp-a8aab492a6a841161e7a00abbe4779409158befb.zip
Add initial What's cooking files
Diffstat (limited to 'whats/cooking')
-rw-r--r--whats/cooking/2009/11/28.txt77
-rw-r--r--whats/cooking/2009/12/01.txt84
2 files changed, 161 insertions, 0 deletions
diff --git a/whats/cooking/2009/11/28.txt b/whats/cooking/2009/11/28.txt
new file mode 100644
index 0000000000..ab50ac864c
--- /dev/null
+++ b/whats/cooking/2009/11/28.txt
@@ -0,0 +1,77 @@
+To: erlang patches <[email protected]>
+Subject: What's cooking in erlang/otp
+X-dev-at: 6448c56ecc7c6584a983c5173fd0748068820698
+
+This is the first in a series of emails that will be sent
+approximately twice a week to [email protected].
+
+This first email is also sent to erlang-questions. If you
+don't already subscribe to erlang-patches, and want to
+be informed about what new features and bug fixes that
+may make it into the next release, or to take part in the
+discussion, make sure that you subscribe to erlang-patches.
+
+Below you'll find a list of the proposed updates that
+have currently been merged to the 'pu' branch in the
+erlang/otp repository at github.
+
+To avoid having patches falling to the floor, as have
+unfortunately frequently happened in the past, we will now
+either merge proposed updates that are not
+obviously wrong or inappropriate to the 'pu' branch, or
+we will tell you what the problem is. Typically, one of
+those things should happen within a workday.
+
+There some is information about patch submitting on the
+wiki pages for erlang/otp at github
+(http://wiki.github.com/erlang/otp) and we will continue
+to update and improve that information.
+
+Here is the list:
+
+* ks/dialyzer-wx-fix (2009-11-28) 1 commit:
+- dialyzer: make -wx always start the SMP emulator
+
+Will soon be graduated to ccase/r13b04.
+
+* sv/sys_get_status (2009-11-27) 1 commit:
+- This change restores the ability for gen_server and gen_fsm callback
+modules to format their own state for display under the
+sys:get_status/0 call. This ability is extremely useful for new
+behavior modules based on gen_server or gen_fsm, so that they can
+display their status in a more meaningful way than just dumping the
+state record. It is also generally useful for applications wanting to
+display their gen_server or gen_fsm callback module state in something
+other than the default manner.
+
+Steve is working on documentation and test cases.
+
+* bg/on_load-types (2009-11-27) 1 commit:
+- Add type information for on_load
+
+Confirmed by Kostis that it is OK, so it will soon be graduated to
+ccase/r13b04_dev.
+
+* egil/readme-debug-emulator (2009-11-27) 2 commits:
+- Fix grammar
+- added runtime system debug build notes
+
+Will soon be graduated to ccase/r13b04.
+
+* bd/http_chunk_fix (2009-11-27) 1 commit:
+- http_chunk data handling/passing improvement.
+
+* ng/readme (2009-11-26) 2 commits:
+- Adding back the copyright markers.
+- Cleaning up some small formatting issues in the README.
+
+Will soon be graduated to ccase/r13b04_dev.
+
+* po/odbc-update-delete-no-rows (2009-11-26) 1 commit:
+- SQL_NO_DATA and SQLSTATE 00000 indicate success for updates/deletes
+that affect no rows
+
+* egil/misc-egd (2009-11-26) 3 commits:
+- re-added egd color specs and removed commented code
+- added test cases for egd_primitives
+- egd speed optimizations and code reduction
diff --git a/whats/cooking/2009/12/01.txt b/whats/cooking/2009/12/01.txt
new file mode 100644
index 0000000000..1fd6c65d69
--- /dev/null
+++ b/whats/cooking/2009/12/01.txt
@@ -0,0 +1,84 @@
+To: erlang patches <[email protected]>
+Subject: What's cooking in erlang/otp (#2)
+X-dev-at: 7a75e61f847c0dd7a97e38b433fd15cedbb50860
+
+This is the second in the What's cooking in erlang/otp
+series of emails.
+
+Since the last email there have been some substantial
+updates to the wiki at http://wiki.github.com/erlang/otp
+
+Thanks to everyone that have helped editing the pages
+(and even created new pages)!
+
+I would want to write about how patches can be refined
+using "git rebase -i" and other powerful git commands,
+but I realize that I will not have time to do that in
+the foreseeable future. So instead I created a placeholder
+page:
+
+http://wiki.github.com/erlang/otp/refining-patches-using-git
+
+Feel free to go there and do something great!
+
+------------------------------------------------------------
+[Graduated to ccase/r13b04_dev]
+
+* ng/readme (2009-11-25) 1 commit
+ + Clean up formatting issues in the README
+
+I combined the original two commits to one.
+
+* egil/readme-debug-emulator (2009-11-25) 1 commit:
+ + README: Add build instructions for a debug-enabled emulator
+
+I amended his commit to correct a few grammos/typos.
+
+* bg/on_load-types (2009-11-27) 1 commit:
+ + Add type information for on_load
+
+* ks/dialyzer-wx-fix (2009-11-28) 1 commit:
+ + dialyzer: make -wx always start the SMP emulator
+
+* bg/make_stub_module-fix (2009-11-29) 1 commit:
+ + Fix glitches when native code modules are used
+
+------------------------------------------------------------
+[New topics]
+
+* as/c_nc-fix (2009-11-29) 1 commit:
+ - Fix c:nc to use outdir or cwd to find compiled object file
+
+* mh/to_erl-error-messages (2009-11-27) 1 commit:
+ - to_erl: Include strerror(errno) in error messages
+
+------------------------------------------------------------
+[Cooking]
+
+* sv/sys_get_status (2009-11-27) 2 commits:
+ - Teach sys:get_status/0 to call Mod:format_status/2
+ - gen_fsm: Fix format_status/2 to handle Pids
+
+Steve fixed the documentation and found and fixed an
+independent bug in gen_fsm that caused a gen_fsm test
+case to fail.
+
+Except that it would be nice with a test case that would
+verify that Mod:format_status/2 really gets called
+(to ensure that the feature doesn't get broken again
+in the future), this branch should be ready for
+graduation.
+
+* bd/http_chunk_fix (2009-11-27) 1 commit:
+ - http_chunk data handling/passing improvement.
+
+* po/odbc-update-delete-no-rows (2009-11-26) 1 commit:
+ - SQL_NO_DATA and SQLSTATE 00000 indicate success for updates/deletes that affect no rows
+
+* egil/misc-egd (2009-11-26) 3 commits:
+ - re-added egd color specs and removed commented code
+ - added test cases for egd_primitives
+ - egd speed optimizations and code reduction
+
+Waiting for Björn-Egil to squeeze the series down to one or
+two commits and revise the commit messages.