From cdf0ad6a807b33461fa93658b7279a281bd77091 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Wed, 10 Jan 2018 15:55:35 -0500 Subject: [PATCH] docs/develop: Delete some more old/obsolete directories. --- docs/develop/fontprefs/readme | 16 --- docs/develop/fontprefs/readme.xml | 112 -------------------- docs/develop/keymap/About.txt | 38 ------- docs/develop/virtualmemory/README.XML | 147 -------------------------- docs/develop/virtualmemory/readme | 19 ---- 5 files changed, 332 deletions(-) delete mode 100644 docs/develop/fontprefs/readme delete mode 100644 docs/develop/fontprefs/readme.xml delete mode 100644 docs/develop/keymap/About.txt delete mode 100644 docs/develop/virtualmemory/README.XML delete mode 100644 docs/develop/virtualmemory/readme diff --git a/docs/develop/fontprefs/readme b/docs/develop/fontprefs/readme deleted file mode 100644 index fb8629b66f..0000000000 --- a/docs/develop/fontprefs/readme +++ /dev/null @@ -1,16 +0,0 @@ -Font Pref App - -ISSUES - -* Rescanning fonts causes the bold font to lose its boldness. -* Fixed width font selector should only show fixed width fonts - -TODO - -* When a style is selected, the font menu label needs to be updated to reflect this -* make a cache panel function that updates the slider labels with an int as a parameter -* Add the VMSettings code so that the panel uses the settings file for position/size - -Matt McMinn -melfinadev@earthlink.net - diff --git a/docs/develop/fontprefs/readme.xml b/docs/develop/fontprefs/readme.xml deleted file mode 100644 index fc5f6871c0..0000000000 --- a/docs/develop/fontprefs/readme.xml +++ /dev/null @@ -1,112 +0,0 @@ - - - Fonts - - 0.8 - - - - Matt McMinn - melfinadev@earthlink.net - http://home.earthlink.net/~melfina/ - - - - - - It's just a copy of the fonts preferences app that comes with BeOS. - - - - - - - - 1 - - - Rescanning fonts causes the bold font to lose its boldness. - - - - - - - - 2 - - - Fixed width font selector should only show fixed width fonts. - - - - - - - Should be relatively easy - just filter the fonts. - - - - - - - - - - - - - - 1 - 0.9 - - - When a style is selected, the font menu label needs to be - updated to reflect this. - - - - - - - - 2 - 0.9 - - - Make a cache panel function that updates the slider labels with - an int as a parameter. - - - - - - - - 3 - 0.9 - - - Add the VMSettings code so that the panel uses the settings - file for position/size. - - - - - - - - 4 - 0.9 - - - Update the default fonts on close. - - - - - - - - - \ No newline at end of file diff --git a/docs/develop/keymap/About.txt b/docs/develop/keymap/About.txt deleted file mode 100644 index 17cd661e75..0000000000 --- a/docs/develop/keymap/About.txt +++ /dev/null @@ -1,38 +0,0 @@ -OpenBeOS Keymap preferences - -2002-05-16 - The input_server is restarted when a keymap is 'use'd. Hooray! - -2002-05-11 - Ok, I have found the 'move keys around with the right mouse button' feature. Now I see the Revert button make sense. Sorry I doubted you JLG :) - -2002-05-08 - Fixed switching from user- to system maps and vice versa and added revert button. Just like the original, it does abolutely nothing. Makes one wonder why it is there in the first place. - -2002-02-16 - Moved message definitions to messages.h, chopped KeymapApplication::UseKeymap into smaller pieces, created member variable fApplication in KeymapWindow, applied OpenTracker guidelines - -2002-02-15 - Added resource file and 'Use' button, made 'System' and 'User' lists mutually exclusive and implemented keymap file copying - -2002-02-09 - Added resource file and 'Use' button and made 'System' and 'User' lists mutually exclusive - sort of - -2002-02-08 - Initial checkin - - -This version: -Copies keymap files but doesn't do much else - you even have to restart the Input Server (try BeReset for that) for the new keymap to work. It seems bugfree at doing what it does though :) - - -To do (likely in this order): -- somehow inform Input Server to use the newly chosen keymap, or else restart the Input Server -- preselect 'Current' -- make the 'System' and 'User' labels show up (or: why are they invisible in the current version?) -- layout the sources to conform to OBOS standards -- find Be-defined constants for paths and/or files -- check validity of keymap file before copying -- add all the fancy stuff that's in the original Keymap application -- switch to Jam -- get rid of all excess symbols (or: what linker switch makes the linker remove all external symbols?) -- hunt leaks and fix'em - - -If anyone looks at my code and sees any major problems, please email me to tell me, I want to work hard on this app to make sure it's as stable and complete as it can get for the OpenBeOS project. - -Sandor Vroemisse -svroemisse@users.sf.net \ No newline at end of file diff --git a/docs/develop/virtualmemory/README.XML b/docs/develop/virtualmemory/README.XML deleted file mode 100644 index 5112038f9f..0000000000 --- a/docs/develop/virtualmemory/README.XML +++ /dev/null @@ -1,147 +0,0 @@ - - - Virtual Memory - - 0.9 - - - - Matt McMinn - melfinadev@earthlink.net - http://home.earthlink.net/~melfina/ - - - - - - It's just a copy of the virtual memory preferences app that comes with BeOS. - - - - - - - - 1 - - - Matthieu Ferte - mferte@club-internet.fr - - - - - Get the physical memory in a better way. - - - - - - - #include - - int physMem; - - system_info info; - get_system_info(&info); - physMem = (info.max_pages * 4096) / 1048576; - - - - - - - - - 2 - - - Matthieu Ferte - mferte@club-internet.fr - - - - - Get the current memory by reading the file. - - - - - - - #include - - int currSwap; - - const char *swap_file; - swap_file = "/boot/var/swap"; - BEntry swap(swap_file); - off_t swapsize; - swap.GetSize(&swapsize); - currSwap = swapsize / 1048576; - - - - - - - - - 3 - - - Matthieu Ferte - mferte@club-internet.fr - - - - - Equation that calculates the minimum swap size is wrong (not linear). - - - - - - - I got the values on my computer with the original vm app : - Ram 256 Mb -> Swap 341 Mb - Ram 512 Mb -> Swap 640 Mb - Ram 768 Mb -> Swap 886 Mb - Ram 1024 Mb -> Swap 1133 Mb - - With obos app i got : - Ram 256 Mb -> Swap 341 Mb - Ram 512 Mb -> Swap 683 Mb - Ram 768 Mb -> Swap 1024 Mb - Ram 1024 Mb -> Swap 1365 Mb - - - - - - - - - - - - - - 10/31/2001 - Initial release. Visually complete. - - - - - - - - Even tho it wasn't really necessary, I know I've overdocumented this app. - My excuse is that I wanted to learn how to use doxygen, and this was a - good app to run it on. So if you want full documentation, and you have - doxygen installed, available from BeBits, run doxygen .doxygen-conf - in the code directory, and it will create docs for you. - - - - \ No newline at end of file diff --git a/docs/develop/virtualmemory/readme b/docs/develop/virtualmemory/readme deleted file mode 100644 index 7676e211e6..0000000000 --- a/docs/develop/virtualmemory/readme +++ /dev/null @@ -1,19 +0,0 @@ -Virtual Memory Preferences App -By: Matt McMinn -melfinadev@earthlink.net -http://home.earthlink.net/~melfina/ - -Introduction -It's just a copy of the virtual memory preferences app that comes with BeOS. It works. - -Documentation -Even tho it wasn't really necessary, I know I've overdocumented this app, My excuse is that I wanted to learn how to use doxygen, and this was a good app to run it on. So if you want full documentation, and you have doxygen installed, available from BeBits, run -doxygen .doxygen-conf -in the code directory, and it will create docs for you - -Version -1.0: 1/28/2002 -Hey, it works. You can set your virtual memory size just like in the actual app. - -0.9: 10/31/2001 -Initial release. Visually complete. \ No newline at end of file