]> git.lyx.org Git - features.git/commitdiff
a couple of useful files
authorLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 21 May 2002 23:58:52 +0000 (23:58 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 21 May 2002 23:58:52 +0000 (23:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4182 a592a061-630c-0410-9148-cb99ea01b6c8

development/TodoPlan-1.3 [new file with mode: 0644]
development/boostworkaround.txt [new file with mode: 0644]

diff --git a/development/TodoPlan-1.3 b/development/TodoPlan-1.3
new file mode 100644 (file)
index 0000000..26b0f25
--- /dev/null
@@ -0,0 +1,39 @@
+Andre:
+
+ global
+    - context sensitive keybindings
+    - better .tex -> .lyx coversion
+    - the "cursor stuff"
+    - unify "real" insets and mathed's insets
+    - David's preview stuff
+
+ mathed only
+    - fill in gaps in AMS support
+    - further work on math-extern
+    - reduce memory consumption
+
+John Levon:
+       o GUII
+       o bug fixes
+
+
+Martin:
+- User-definable floats (Herbert)
+- Optional arguments (short title versions)
+- Spreadsheet functionality (basic) in tabular
+- Something else I don't remember :-)
+
+Michael:
+
+- upgrade of libsigc version to 1.4/1.3 whatever the release version
+ends up getting called.
+- GUII
+- Gtkmm2 frontend.
+
+Lgb:
+- upgrade boost
+- upgrade gettext
+- textclass as string
+- force arg check on lyxfuns
+- move towards no-next code in paragraph,cursor and row.
+- remove 1.2.x compability code.
\ No newline at end of file
diff --git a/development/boostworkaround.txt b/development/boostworkaround.txt
new file mode 100644 (file)
index 0000000..14e81c8
--- /dev/null
@@ -0,0 +1,32 @@
+crc.hpp:
+
+@@ -280,15 +280,10 @@
+         typedef typename base_type::least  least;
+         typedef typename base_type::fast   fast;
+
+-#ifdef __DECCXX
+-           static const least high_bit = 1ul << (Bits - 1u);
+-           static const fast high_bit_fast = 1ul << (Bits - 1u);
+-#else
+         BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits
+          - 1u )) );
+         BOOST_STATIC_CONSTANT( fast, high_bit_fast = (fast( 1u ) << ( Bits
+          - 1u )) );
+-#endif
+
+     };
+
+@@ -345,11 +340,7 @@
+         BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast )
+;
+         #endif
+
+-#ifdef __DECCXX
+-           static const least sig_bits = (~( ~(0ul) << Bits));
+-#else
+         BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits ))
+);
+-#endif
+         BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
+
+