IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an
email to Administrator. User accounts are meant only to access repo
and report issues and/or generate pull requests.
This is a purpose-specific Git hosting for
BaseALT
projects. Thank you for your understanding!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
to read a buffer from the input and feed to to the output while yielding
the progress percentage.
It is just an experiment because it is intended to be generic enough to work
with several input and output types. Currently, it needs an open file
object as input and a SAX parser as output.
This class takes a number of parameters that alter the way it is displayed
or behaves.
The selection property returns the file selection. Accessing this property
is what displays the dialog, tests the response, and returns the file
selection if any.
The file manager service uses this new class for displaying dialogs.
Gaphor application instance if the element has been bound to a factory.
If the application instance exists, we can use its component methods
instead of calling zope.component directly.
Also removed some manual garbage collection and assertions as they seemed
to serve no real purpose.
The ElementFactory.lselect() method is used for element retrieval instead
of wrapping select() in a list instance or accessing _elements directly.
The Gaphor application instance, if supplied, will handle the
ElementDeleteEvent instead of calling the _element_deleted component
adapter directly.
has changed from _save() to save().
The save() method verifies orphan references in the model before saving.
This functionality has been moved to its own method, verify_orphans().
The filename validation, which makes sure the filename has a valid
extension, has also been moved to a separate method - verify_filename().
The save() method has also been cleaned up. If there is no supplied filename,
the method fails immediately. It is no longer wrapped in a large if
statement. The try/finally statement has also been removed.
documentation and using better variable names. The initialization
also uses the MAX_RECENT constant.
Fixed the get_filename() method used by the filename property. It
wasn't actually returning anything.
Added some documentation to the set_filename() method.
in the file manager service. The class is used in the same way as the
function was, with the exact same signature.
The reason for factoring this function into the ui package is that it is
generic enough to be used by services other than the file manager. The
new StatusWindow is strictly a ui component.
to be specified during startup. Added a logging level map dictionary to the
Logger class. This is used to check the supplied logging level from the
command line.
The parsed command line options are now passed to the launch() function.
Hopefully they can be set in the main application object so that they are
accessible to services and plugins.