Revision: 412
Author: roman_yakovenko
Date: 2006-08-16 01:48:33 -0700 (Wed, 16 Aug 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=412&view=rev
Log Message:
-----------
reupdating docs - removing white spaces, inserted by MS Word
Modified Paths:
--------------
pygccxml_dev/docs/history/history.rest
Modified: pygccxml_dev/docs/history/history.rest
===================================================================
--- pygccxml_dev/docs/history/history.rest 2006-08-16 08:44:16 UTC (rev 411)
+++ pygccxml_dev/docs/history/history.rest 2006-08-16 08:48:33 UTC (rev 412)
@@ -21,72 +21,93 @@
0.8.1
-----
-1. `pygccxml`_ has been ported to MacOS X. Many thanks to Darren Garnier!
-
-2. New type traits have been added:
-
- * ``enum_traits``
- * ``class_traits``
- * ``class_declaration_traits``
- * ``is_std_string``
- * ``is_std_wstring``
- * ``remove_declarated``
- * ``has_public_less``
- * ``has_public_equal``
- * ``has_public_binary_operator``
- * ``smart_pointer_traits``
- * ``list_traits``
- * ``deque_traits``
- * ``queue_traits``
- * ``priority_queue``
- * ``vector_traits``
- * ``stack_traits``
- * ``map_traits``
- * ``multimap_traits``
- * ``hash_map_traits``
- * ``hash_multimap_traits``
- * ``set_traits``
- * ``hash_set_traits``
- * ``multiset_traits``
- * ``hash_multiset_traits``
-
-3. ``enumeration_t`` class interface was changed. Enumeration values are kept
- in a list, instead of a dictionary. ``get_name2value_dict`` will build for
- you dictionary, where key is an enumeration name, and value is an enumeration
- value.
-
- This has been done in order to provide stable order of enumeration values.
-
-4. Now you can pass operator symbol, as a name to query functions:
-
- ::
-
- cls = global_namespace.class_( 'my_class' )
- op = cls.operator( '<' )
- #instead of
- op = cls.operator( symbol='<' )
-
-5. `pygccxml`_ improved a lot functionality related to providing feedback to user:
-
- * every package has its own logger
-
- * only important user messages are written to ``stdout``
-
- * user messages are clear
-
-6. Support to Java native types has been added.
-
-7. It is possible to pass an arbitrary string as a parameter to `GCC-XML`_.
-
-8. Native java types has been added to fundamental types.
-
-9. Cache classes implementation was improved.
-
-10. Few bug were fixed.
-
-11. Documentation was improved.
-
-
+1. `pygccxml`_ has been ported to MacOS X. Many thanks to Darren Garnier!
+
+2. New type traits have been added:
+
+ * ``enum_traits``
+
+ * ``class_traits``
+
+ * ``class_declaration_traits``
+
+ * ``is_std_string``
+
+ * ``is_std_wstring``
+
+ * ``remove_declarated``
+
+ * ``has_public_less``
+
+ * ``has_public_equal``
+
+ * ``has_public_binary_operator``
+
+ * ``smart_pointer_traits``
+
+ * ``list_traits``
+
+ * ``deque_traits``
+
+ * ``queue_traits``
+
+ * ``priority_queue``
+
+ * ``vector_traits``
+
+ * ``stack_traits``
+
+ * ``map_traits``
+
+ * ``multimap_traits``
+
+ * ``hash_map_traits``
+
+ * ``hash_multimap_traits``
+
+ * ``set_traits``
+
+ * ``hash_set_traits``
+
+ * ``multiset_traits``
+
+ * ``hash_multiset_traits``
+
+3. ``enumeration_t`` class interface was changed. Enumeration values are kept
+ in a list, instead of a dictionary. ``get_name2value_dict`` will build for
+ you dictionary, where key is an enumeration name, and value is an enumeration
+ value.
+
+ This has been done in order to provide stable order of enumeration values.
+
+4. Now you can pass operator symbol, as a name to query functions:
+ ::
+
+ cls = global_namespace.class_( 'my_class' )
+ op = cls.operator( '<' )
+ #instead of
+ op = cls.operator( symbol='<' )
+
+5. `pygccxml`_ improved a lot functionality related to providing feedback to user:
+
+ * every package has its own logger
+
+ * only important user messages are written to ``stdout``
+
+ * user messages are clear
+
+6. Support to Java native types has been added.
+
+7. It is possible to pass an arbitrary string as a parameter to `GCC-XML`_.
+
+8. Native java types has been added to fundamental types.
+
+9. Cache classes implementation was improved.
+
+10. Few bug were fixed.
+
+11. Documentation was improved.
+
-----------
Version 0.8
-----------
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|