summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the password dialog to use a password control.Jack Jansen1999-12-131-50/+26
|
* C-style comments removed (again).Jack Jansen1999-12-133-4/+237
| | | | AE stuff got some extra definitions (don't know why these weren't checked in).
* Methods {Get,Set}ControlData that know about data types passed for the variousJack Jansen1999-12-131-0/+32
| | | | | 4-char codes. The table which maps codes to datatypes is still pretty empty, I'll fill it as I need entries (or maybe someone wants to spend a nice day filling it?).
* Fixed the password dialog to use a password control.Jack Jansen1999-12-131-0/+0
| | | | Aligned all sizes and such the HIG standards (I think).
* Updated Message, question, YNC and progress dialogs for Appearance. PasswordJack Jansen1999-12-122-47/+33
| | | | | remains to be done, and maybe we should convert everything to movablemodal too and make things like question look nicer.
* In places where a ResObj is expected for PyArg_Parse and the object passed ↵Jack Jansen1999-12-122-10/+53
| | | | | | in isn't but it does have an as_Resource method use that. This makes life a lot easier for appearance portability (and was needed anyway).
* Regenerated toolbox modules with CW Pro 5.2, which has MacOS 8.6 and ↵Jack Jansen1999-12-1231-1/+144
| | | | | | Appearance 1.1 support, and added workaround for non-existing calls for 68K. Static 68K Python still has a tk problem.
* Regenerated with CW Pro 5.2, which has MacOS 8.6 and Appearance 1.1 support.Jack Jansen1999-12-1247-498/+4048
|
* Dummy functions which return unimpErr for lots of toolbox calls that are ↵Jack Jansen1999-12-121-0/+290
| | | | | | unavailable for 68K. This way we don't have to disable thm in bgen, so we can still use them on PPC.
* Oops, PLstring funcs should be "pascal". Funny this never caused problems ↵Jack Jansen1999-12-121-3/+9
| | | | before...
* Catch up with terminology change in UnixCCompiler: 'includes' -> 'include_dirs'.Greg Ward1999-12-122-11/+12
|
* Catch missing MANIFEST file and warn rather than blowing up.Greg Ward1999-12-121-3/+27
| | | | | | | | Added 'nuke_release_tree()' method to blow away the directory from which the archive file(s) are created, and call it (conditionally) from 'make_distribution()'. Added 'keep_tree' option (false by default) to disable the call to 'nuke_release_tree()'.
* Fixed 'find_package_modules()' to ensure that we never build (and thusGreg Ward1999-12-121-11/+24
| | | | | | | | install) the setup script itself. Fixed 'build_module()' so we do *not* preserve file mode (which means we can install read-only files, which makes the next installation of this distribution fail -- at least under Unix); added a comment explaining this.
* Changed 'build_extensions()' so 'sources' can be a list or tuple; andGreg Ward1999-12-121-3/+4
| | | | | call CCompiler method 'compile()' with 'include_dirs' not 'includes'. Fixed stupid typo in 'get_source_files()'.
* In 'compile()' method, renamed 'includes' parameter to 'include_dirs' forGreg Ward1999-12-121-6/+16
| | | | | | consistency with 'build_ext' command option. Changed 'compile()' and 'link_shared_object()' so 'include_dirs', 'libraries', and 'library_dirs' can be lists or tuples.
* Added support for printing out help text from option table: 'print_help()',Greg Ward1999-12-121-12/+171
| | | | | | | | 'generate_help()', 'wrap_text()' functions, and a little tiny test of 'wrap_text()'. Changed how caller states that one option is the boolean opposite of another: added 'negative_opt' parameter to 'fancy_getopt()', and changed to use it instead of parsing long option name.
* Made "verbose" mode the default; now you have to supply --quiet if youGreg Ward1999-12-121-18/+75
| | | | | | | | | | | | | | | | | | | | | | | want no output. Still no option for a happy medium though. Added "--help" global option. Changed 'parse_command_line()' to recognize help options (both for the whole distribution and per-command), and to distinguish "regular run" and "user asked for help" by returning false in the latter case. Also in 'parse_command_line()', detect invalid command name on command line by catching DistutilsModuleError. a 'negative_opt' class attribute right after 'global_options'; changed how we call 'fancy_getopt()' accordingly. Initialize 'maintainer' and 'maintainer_email' attributes to Distribution to avoid AttributeError when 'author' and 'author_email' not defined. Initialize 'help' attribute in Command constructor (to avoid AttributeError when user *doesn't* ask for help). In 'setup()': * show usage message before dying when we catch DistutilsArgError * only run commands if 'parse_command_line()' returned true (that way, we exit immediately when a help option is found) * catch KeyboardInterrupt and IOError from running commands Bulked up usage message to show --help options. Comment, docstring, and error message tweaks.
* New appearance mgr support. This appears (no pun intended) to have some ↵Jack Jansen1999-12-103-1/+631
| | | | problems that I'll fix tonight, so don't check it out.
* The call to PyArg_ParseTuple in al_Connect had one too few arguments.Guido van Rossum1999-12-101-1/+1
| | | | This fixes PR#157.
* Changed appearance-dialogs to new WDEF values. Also undid silly change ofJack Jansen1999-12-091-0/+0
| | | | button types in those dialogs.
* Regenerated, and manually massaged (sigh): there can now be comments after ↵Jack Jansen1999-12-091-3/+45
| | | | enum defs, and bgen doesn't understand this yet.
* Fixed a linebreak I forgot, added docstrings, (temporarily) blacklisted a ↵Jack Jansen1999-12-093-17/+147
| | | | few routines that seem to be missing in my CW Pro 5.1.
* Added USE_APPEARANCE flag.Jack Jansen1999-12-093-0/+3
|
* Document the new stuff in the os module.Fred Drake1999-12-091-2/+47
|
* Added support for ctermid, tempnam, tmpfile, tmpnam, and tmpnam_r.Fred Drake1999-12-093-107/+127
|
* Added support for abort(), ctermid(), tmpfile(), tempnam(), tmpnam(),Fred Drake1999-12-091-163/+326
| | | | | | | | | and TMP_MAX. Converted all functions that used PyArg_Parse() or PyArg_NoArgs() to use PyArg_ParseTuple() and specified all function names using the :name syntax in the format strings, to allow better error messages when TypeError is raised for parameter type mismatches.
* Changes by Corran Webster to support {Get,Set}ControlData andJack Jansen1999-12-092-12/+132
| | | | HandleControlClick. Untested.
* Minimal test of Dlg.SetControlData by Corran Webster: draw a defaultJack Jansen1999-12-091-0/+13
| | | | ring around a button. Mainly here so I can transfer it home:-)
* First bits and pieces of appearance support: an init routine, a global flag ↵Jack Jansen1999-12-076-13/+45
| | | | | | PyMac_AppearanceCompliant (exported thru MacOS). If USE_APPEARANCE is off the code is disabled (but the variables are still there, set to 0).
* OpenSSL support. This is based on patches for a version of SSLeay byGuido van Rossum1999-12-071-1/+7
| | | | | | Brian E Gallew, which were improved and adapted to OpenSSL 0.9.4 by Laszlo Kovacs of HP. Both have kindly given permission to include the patches in the Python distribution. Final formatting by GvR.
* OpenSSL support. This is based on patches for a version of SSLeay byGuido van Rossum1999-12-073-19/+439
| | | | | | Brian E Gallew, which were improved and adapted to OpenSSL 0.9.4 by Laszlo Kovacs of HP. Both have kindly given permission to include the patches in the Python distribution. Final formatting by GvR.
* According to Craig H Rowland, openbsd2 is yet another BSD variant thatGuido van Rossum1999-12-061-0/+2
| | | | uses the BSD version of the lock structure. Sigh, @!%$.
* Added \" to escapes so embedded escaped double quotes are handledBarry Warsaw1999-12-061-0/+1
| | | | correctly. Patch suggested by Mads Kiilerich <mk@solit.dk>.
* Set the finder "is shared" bit, by request of Joe Strout. It seems this ↵Jack Jansen1999-12-031-1/+1
| | | | | | allows multiple simultaneous copies to be run from a server, and Applets shouldn't write their datafork so it appears safe.
* Allow for 12 arguments max, in stead of 8. Untested.Jack Jansen1999-12-031-6/+9
|
* Correct the docstring for byteswap(); error noted by Bernhard ReiterFred Drake1999-12-031-4/+9
| | | | | | | <bernhard@uwm.edu>. Added a check that no parameters were passed to byteswap(); previously allowed any parameters you happened to pass.
* [from 1999-11-04]Greg Ward1999-12-031-5/+14
| | | | | | | | Bunch of little bug fixes that appeared in building non-packagized distributions. Mainly: - brain-slip typo in 'get_package_dir()' - don't try to os.path.join() an empty path tuple -- it doesn't like it - more type-safety in 'build_module()'
* Default schedparams set to (0,0): no event-intervention by Python mainloop. ThisJack Jansen1999-12-031-2/+2
| | | | | was always meant to be the default, and the new example-2 was pretty critical of this.
* Standalone.html is long obsolete. Added description of BuildApplicationJack Jansen1999-12-033-89/+59
| | | | process to freezing.html.
* New examples by Tony Ingraldi, using dns-lookup in stead of the funny interslipJack Jansen1999-12-0312-333/+241
| | | | module.
* Give a warning if system-wide sys.argv processing is off (because then weJack Jansen1999-12-021-1/+4
| | | | | may have missed an applet being dropped on us). This may fix the obscure bug Tony Ingraldi was experiencing.
* Last try, think I got it now.Barry Warsaw1999-12-011-1/+0
|
* Once moreBarry Warsaw1999-12-011-0/+1
|
* Once moreBarry Warsaw1999-12-011-1/+0
|
* Urg!Barry Warsaw1999-12-011-0/+1
|
* more trivial stuff to test CVS -- should be the last?Barry Warsaw1999-12-011-1/+1
|
* testing CVS once moreBarry Warsaw1999-12-011-1/+0
|
* testing CVSBarry Warsaw1999-12-011-0/+1
|
* testing CVSBarry Warsaw1999-12-011-1/+0
|
* testing CVSBarry Warsaw1999-12-011-0/+1
|