Main > Free Download Search >

Free bazaar vcs 0.18 software for linux

bazaar vcs 0.18

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 96
The Bazaar VCS 0.18 / 0.90.0 RC1

The Bazaar VCS 0.18 / 0.90.0 RC1


The Bazaar VCS is a simple decentralized revision control system. more>>
The Bazaar VCS is a simple decentralized revision control system. Decentralized revision control systems give users the ability to branch remote repositories to a local context.
Users can commit to local branches without requiring special permission from the branches that they branched from.
Whats New in 0.18 Stable Release:
- This release provides over 50 changes, including 15 bugfixes, 16 user-visible improvements, and over 20 enhancements to internals such as test suite enhancements, cleaner APIs, and much more developer documentation.
- Some of the highlights include better criss-cross merging, improved usability, and faster bundle, merge, missing, pull, update, and info operations.
Whats New in 0.90.0 RC1 Development Release:
- Some of the highlights include pyrex implementations of some performance critical functions, algorithm changes giving performance improvements to merging and merge directive generation, a send command that will make contributing changes back easier, and connection sharing to reduce the number of connections that must be made to a remote location in some situations.
- This release includes 10 bugfixes, 25 user visible improvements, and over 20 enhancements to the internals.
<<less
Download (1.5MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
799 downloads
Bazaar-GTK 0.18.0

Bazaar-GTK 0.18.0


Bazaar-GTK is a GTK+ frontend for the Bazaar version control system. more>>
Bazaar-GTK is a GTK+ frontend for the Bazaar version control system.
The project provides Nautilus integration and a stand-alone application for browsing Bazaar branches.
Provided Commands
- gcommit
- gdiff
- visualise
- gannotate
- gbranch
Provided classes
- GAnnotateWindow
- GCommitDialog
- CloneDialog
- DiffWindow
- BranchWindow (Visualisation)
<<less
Download (0.10MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
824 downloads
Radar Tools 0.18

Radar Tools 0.18


Radar Tools is an advanced SAR remote sensing image processing software. more>>
Radar Tools in short RAT is a small collection of tools for processing SAR (synthetic aperture radar) remote sensing data, packed together in a nice graphical user interface.
Our motivation to start the development of RAT is that modern remote sensing software like Erdas Image or ENVI include only some basic SAR functionality. Advanced algorithms have to be implemented by oneself.
So we descided to start the development of RAT. RAT should bring modern SAR algorithms to a wider user-base by simplifying in particular the data handling and processing of complex SAR data.
RAT is planned as an ongoing community effort, i.e. there will be no final version with a certain functionality. It is our idea to include more and more SAR tools in future and to make them freely available to the scientific community.
We of course also hope for external contributions. Because of this, the programming interface of RAT is kept quite simple and adding own functions is quite easy. Function templates are included in the distribution and a step-by-step description of how to program a RAT module will appear soon in the documentation.
Main features:
General features
- Cross-platform (Unix, Windows, Linux & Mac OSX)
- Free software, no commercial software license needed (when using the IDL-VM version)
- Availability of the complete source code
- Modular design, easy to extend by own functions
- Small memory footprint even when processing large images (vertical tiling)
- No limitation on the image size
- Keep track of data representation changes during image processing
- Optimised preview on screen while calculations are done in full resolution
- Native import routines for E-SAR (DLR) and ENVISAT-IMS (ESA) data
- Export possibility to generic graphic formats (png, jpg & tiff)
- Undo function for the last processing step
Generic image manipulation
- Resize, presumming & cut region
- Zooming of an area of interest
- Mirror vertical and horizontal
- Binary transforms
Single channel SAR
- SAR speckle filtering (Boxcar, Median, Gauss, Kuan, Frost, MAP Lee, refined Lee, Lee-Sigma)
- Edge detection (RoA, MSP-RoA, Sobel, Roberts)
- Co-occurance texture features, variation coefficient
- Point and distributed target analysis
- Generic slant-to-ground range projection
SAR polarimetry
- Polarimetric point target analysis
- Polarimetric speckle filtering (Boxcar, Lee, refined Lee)
- Polarimetric CFSAR edge detection
- Calculation of interchannel ratios, correlation & phase differences
- Formation of covariance and coherency matrix, span calculation
- Polarimetric basis transforms (linear -> circular ....)
- Decompositions (Pauli, Freman-Durdan, Moriyama, Entropy/Alpha, Eigenvalue, Sphere-Diplane-Helix....)
- Polarimetric classification (Entropy/Alpha/Anisotropy, Wishart, No. of scatterers, physical, Lee category preserving...)
- Polarimetric calibration: imbalance, symmetrisation & crosstalk (Quegan method)
SAR interferometry
- Image pair coregistration (coarse, subpixel & spatially varying)
- Interferogram formation
- Flat-earth removal
- Phase-unwrapping (least-squares only)
- Phase noise filter (Boxcar, Goldstein & GLSME)
- Coherence estimation (Boxcar, Gauss, Region Growing)
- Shaded relief calculation
Polarimetric SAR interferometry
- Formation of POLINSAR covariance and coherency matrices
- Coherence estimation & optimisation
- Extraction of optimised ESPRIT phases
- POLINSAR speckle filtering (Boxcar, Gauss & Lee)
- Coherence analysis in the complex unitary plane
<<less
Download (2.5MB)
Added: 2007-04-02 License: Freeware Price:
952 downloads
VCS 0.14

VCS 0.14


VCS project is a Perl library for generic Version Control System access in Perl. more>>
VCS project is a Perl library for generic Version Control System access in Perl.

SYNOPSIS

use VCS;
$file = VCS::File->new($ARGV[0]);
print $file->url, ":n";
for $version ($file->versions) {
print $version->version,
was checked in by ,
$version->author,
"n";
}

VCS is an API for abstracting access to all version control systems from Perl code. This is achieved in a similar fashion to the DBI suite of modules. There are "container" classes, VCS::Dir, VCS::File, and VCS::Version, and "implementation" classes, such as VCS::Cvs::Dir, VCS::Cvs::File, and VCS::Cvs::Version, which are subclasses of their respective "container" classes.
The container classes are instantiated with URLs. There is a URL scheme for entities under version control. The format is as follows:

vcs://localhost/VCS::Cvs/fs/path/?query=1

The "query" part is ignored for now. The path must be an absolute path, meaningful to the given class. The class is an implementation class, such as VCS::Cvs.

The "container" classes work as follows: when the new method of a container class is called, it will parse the given URL, using the VCS->parse_url method. It will then call the new of the implementations appropriate container subclass, and return the result. For example,

VCS::Version->new(vcs://localhost/VCS::Cvs/fs/path/file/1.2);

will return a VCS::Cvs::Version.

An implementation class is recognised as follows: its name starts with VCS::, and require "VCS/Classname.pm" will load the appropriate implementation classes corresponding to the container classes.

VCS METHODS

VCS->parse_url

This returns a four-element list:

($hostname, $classname, $path, $query)

For example,

VCS->parse_url(vcs://localhost/VCS::Cvs/fs/path/file/1.2);

will return

(
localhost,
VCS::Cvs,
/fs/path/file/1.2,

)

This is mostly intended for use by the container classes, and its interface is subject to change.

VCS->class_load

This loads its given implementation class.

This is mostly intended for use by the container classes, and its interface is subject to change.

<<less
Download (0.021MB)
Added: 2007-05-07 License: Perl Artistic License Price:
901 downloads
Bazaar Explorer 0.5

Bazaar Explorer 0.5


desktop application providing an easy-to-use interface to the Bazaar version control system more>>

Bazaar Explorer 0.5 is a simple to use, yet sophisticated desktop application with an easy-to-use interface for the Bazaar version control system. It is designed to be simple enough for casual users of version control, yet powerful enough for experts to be productive. To see BzrExplorer in action, see Bazaar Explorer by Pictures or browse the screenshots.

Unlike many other version control applications, BzrExplorer puts the focus on managing branches and changes, rather than directories and files. (If you prefer the latter, you may find an extension to the File Manager provided as part of the operating system more to your liking, e.g. TortoiseBzr.)

Major Features:

  1. Cross Platform
    • Based on Nokia's Qt technology, BzrExplorer runs on all popular desktops including GNOME, KDE, Windows and Mac OS X. In each environment, it provides a native look-and-feel and adjusts its menu to meet the UI design guidelines for that platform.
  2. Application Suites
    • BzrExplorer provides most of its functionality by calling out to mini-applications provided by "application suites", namely the QBzr and bzr-gtk plugins. QBzr is required while bzr-gtk is optional. If both are installed, you can choose which application suite to use.
    • Note: Different application suites provide different amounts of coverage of Bazaar's functionality. If you expect an action to be enabled and it isn't, it's probably because the application suite is yet to provide that feature.
  3. Location Views:
    • BzrExplorer supports 4 kinds of Bazaar locations:
      • repositories
      • branches
      • bound branches (also called heavyweight checkouts in Bazaar 1.x)
      • checkouts.
    • The summary view and actions available depend on the location kind. For example, opening a repository shows the interesting locations nested within it while opening a branch shows the working tree "status" summary.
    • Note: Strictly speaking, "repositories" are actually called shared repositories and "checkouts" are actually called lightweight checkouts. Those more-precise terms are avoided in the BzrExplorer user interface to Keep It Simple for casual users.
  4. Change Management: Here's the most commonly used recipe by BzrExplorer users:
    • Open a branch
    • Change some files
    • Select Refresh on the toolbar (F5), confirming the overall status
    • Select Diff on the toolbar (F3), checking the changes
    • Select Commit on the toolbar (F4)
    • Enter a commit message and select OK
    • Select Refresh on the toolbar (F5), confirming there are no outstanding changes
  5. Remote Locations
    • While primarily designed for working on local branches, BzrExplorer lets you open remote locations, e.g. branches on Launchpad. The set of actions available is masked accordingly.
  6. Settings Management
    • BzrExplorer provides easy access to all of Bazaar's configuration files. Custom dialogs are provided by the various application suites for nice editing of some of these. For others, a (configurable) text editor is launched.
  7. Troubleshooting
    • BzrExplorer provides easy access to Bazaar's log file and the Launchpad pages for reporting bugs and asking questions about BzrExplorer. A diagnostic mode can also be enabled in which selecting an action simply shows what Bazaar command would actually be run, together with the options and parameters that would be passed to it.
<<less
Added: 2009-07-21 License: GPL Price: FREE
14 downloads
libmrss 0.18.0

libmrss 0.18.0


libmRSS is a C library for parsing, writing, and creating RSS. more>>
libmRSS is a C library for parsing, writing, and creating RSS (Rich Site Summary or Really Simple Syndication, but not RDF Site Summary) files or streams.
Enhancements:
- This release fixes the new API for error codes and messages.
<<less
Download (0.34MB)
Added: 2007-07-05 License: LGPL (GNU Lesser General Public License) Price:
841 downloads
DarkIce 0.18.1

DarkIce 0.18.1


DarkIce is a live audio streamer. more>> <<less
Download (1.3MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
915 downloads
avrLab 0.18

avrLab 0.18


avrLab is an IDE for the AVR microcontroller. more>> <<less
Download (0.02MB)
Added: 2005-04-22 License: GPL (GNU General Public License) Price:
1650 downloads
RBBS 1.0.18

RBBS 1.0.18


RBBS is a bulletin board system with Web interface. more>>
RBBS is a bulletin board system with Web interface. Users of RBBS can post and response to articles. As the principal purpose of RBBS is to be used as such communication system as BBS, it is useful for individual use and for one-to-many communication. The following are features of RBBS.
Accessibility
Articles is structured into chapters, paragraphs, and so on in the text with XML. The appearance of articles is defined with style sheet. Since document structure and presentation are separated, transmission of information corresponding to various needs in the Web environment is attained. Moreover, because Wiki-style format is supported, you can write and edit articles easily.
Floating Threads
When a response is attached to an article, the order of the article becomes the top of the page. Since articles to which responses are often attached are displayed in an exhibitionist manner, users can catch up popular topics easily. Moreover, because each response is only by one line, lighthearted communication like chat is taken.
Atom Syndication
In order for users to check new articles and responses easily, Atom feeds are delivered. Using a news reader supporting Atom, users can check some news site and RBBS at the same time.
RBBS is available on Linux, Solaris, HP-UX, FreeBSD, NetBSD, OpenBSD, Mac OS X, and Windows (Cygwin). Other UNIX systems are also. As RBBS is implemented with the C language, no environment for running a scripting language is needed. RBBS is a free software licensed under the GNU General Public License.
Enhancements:
- User interface was enhanced.
- The format of the log file was modified.
- Release: 1.0.16
<<less
Download (0.41MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1219 downloads
Torsmo 0.18

Torsmo 0.18


Torsmo is a system monitor that sits in the corner of your desktop. more>>
Torsmo is a system monitor that sits in the corner of your desktop.
Torsmo project is very simple, customizable and it renders only text on the desktop (and percentagebars if you want it to and the only lib it uses is Xlib.
Torsmo can show various information about your system and its peripherals.
Main features:
- Kernel version
- Uptime
- System time
- Network interface information
- Memory and swap usage
- Hostname
- Machine, i686 for example
- System name, Linux for example
- Temperatures from i2c-sensors
- Temperature from ACPI
- Battery capacity from ACPI/APM
- Number of processes running or sleeping
- Local mails (unread and all)
- Filesystem stats
Enhancements:
- Fixed some double buffer + Xft stuff
- Applied X-Mozilla-Status patch (thanks affinity)
- Applied NVCtrl patch and modified it a bit (temperature monitoring for nvdia-based graphics cards) (I couldnt test this so it may or may not work or even compile) (thanks Dennis Frommknecht)
- Applied fs_used_perc and fs_bar_free patch (thanks killfire [send me mail, I didnt catch your name from sourceforge])
- Applied patch that supports mailbox that is in some maildir format (thanks jolapache [send mail, I didnt catch your name from sourceforge])
- min -> m
- Applied pad_percents patch (thanks JL Farinacci)
- Fixed some stuff in acpi fan and acpi ac adapter
- Optional XFT even when compiled in
<<less
Download (0.082MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1375 downloads
XAMS 0.0.18

XAMS 0.0.18


The eXtended Account Management System (XAMS) allows Administration of Unix, Web, FTP, DNS, and email accounts to manage a provider... more>> <<less
Download (379KB)
Added: 2009-04-04 License: Freeware Price: Free
202 downloads
Roadnav 0.18

Roadnav 0.18


Roadnav is an in-car navigation system capable of running on a variety of operating systems. more>>
Roadnav is an in-car navigation system that can run on a variety of operating systems like Linux, Windows, and Mac OS X.
Roadnav can obtain a cars present location from a GPS unit, plot street maps of the area, and provide verbal turn by turn directions to any location in the USA.
Roadnav uses the free TIGER/Line files from the US Census Bureau to build the maps, along with the GNIS state and topical gazetteer data from the USGS to identify locations.
Main features:
- Generates street level maps for the US
- Interfaces with GPS units to display your position in real time
- Verbal turn by turn directions to any place in the US. Automatically recomputes directions if you miss a turn.
- On screen keyboard
- 3D (drivers perspective) view mode
- Daytime and nighttime color schemes
- Automatic day/night mode switching
- Plots nearby landmarks and points of interest
- Can operate offline (without an Internet connection)
- Antialiased output
- Supports multiple operating systems including Windows, Linux, and Mac OS X
- Uses freely available data from the US Census Bureau and the USGS
- Appearance can be customized with skins
- Can output status information to LCD devices through LCDproc
Enhancements:
Enhancements:
- Adds option to Preferences to enable gpsd buffering (reduces jitter).
- Adds experimental GPX import support.
- Disk usage reduced by ~30%.
- Adds GPS serial initialization string option to Preferences.
- Adds preference to override default map directory.
- Adds option for username/password proxy authentication.
- Adds "Use System Proxy Settings" preference, which reads proxy settings from the HTTP_PROXY environmental variable.
Bug Fixes:
- Fixes Delete button in Waypoints dialog when no waypoints exist.
- Workaround for buggy serial implementations.
- Fixes Windows 2000 compatibility.
- Fixes i18n issue in OSM code.
- Improved address look up.
- Eliminates IPP error messages when printer is not configured.
- Improved compatibility with DeLorme Tripmate and Earthmate GPS units.
- Win32 floating point model changed from fast to precise. Should resolve problems calculating routes.
- Fixes focusing issue in keyboard dialog.
Developer Visible Changes:
- MapControlData_Tiles index files eliminated.
- Direct access to Point::m_fLong and Point::m_fLat eliminated. Use the Point::Set* and Point::Get* functions instead.
Misc:
- Compiled maps now organized in a more human readable format.
- Eliminates TIGER/Line 2006 First Edition from search path.
- Proxy settings now on their own preferences page.
- When maps have to be upgraded, adds option to not upgrade map files and immediately terminate Roadnav instead.
- Small map labels now have a solid background instead of a cross hatch.
<<less
Download (2.5MB)
Added: 2007-06-30 License: GPL (GNU General Public License) Price:
851 downloads
bzr 0.10 RC1

bzr 0.10 RC1


bzr is a simple distributed version control system. more>>
Bazaar-NG (or bzr) is a project of Canonical to develop an open source distributed version control system that is powerful, friendly, and scalable.
Version control means a system that keeps track of previous revisions of software source code or similar information and helps people work on it in teams.
bzr is still at a fairly early stage of development but has been self-hosting since March 2005 with no loss of data.
bzr is the next-generation distributed version control.
Main features:
- Written in Python (but nevertheless fast and easy to install.)
- Runs on Linux, Windows and Mac OS X, or any system with a Python interpreter. (Primarily tested on Ubuntu.)
- Free software, released under the GNU GPL.
- Designed to play well with others: can be called by IDEs, editors, web tools, GUIs, etc through either a Python API or a shell interface, and possibly a C interface in the future. Can support workflow/process tools built on top.
- The user interface is simple and familiar to people with experience from CVS or Subversion: add, mv, diff, status, commit, log, merge, etc all do what you would expect.
- Offers a choice between centralized and decentralized work within a single project: when in the office, you can work on a shared central branch. For experimental changes or offline work you can make a branch on your laptop and merge back in later.
- Preserves history; any previous revision can be recreated. History can be GPG-signed to protect against man-in-the-middle attacks, bad mirrors, server intrusion or data corruption.
- Just one .bzr directory at the top of the tree; it doesnt clutter the tree or get in your face. No wierd ++file--names--0.
- Tracks file and directory renames and merges across them.
- Powerful Python plugin system for adding new commands, protocols, formats, or site policy.
Enhancements:
- merge now takes --uncommitted, to apply uncommitted changes from a tree.
- Moderate performance improvements, particularly on large trees.
- Compatability with diffutils 2.8.4. bzr uncommit preserves pending merges.
- Active FTP support has been fixed.
- TZ=UTC is handled properly when reading/writing revisions.
- GPG_TTY is used to allow gpg --cl to work with gpg-agent in a pipeline (passing text to sign in on stdin).
- External diff does the right thing for binaries even in foreign languages.
<<less
Download (0.55MB)
Added: 2006-08-28 License: GPL (GNU General Public License) Price:
1153 downloads
Bazaar Subversion Plugin 0.4.0

Bazaar Subversion Plugin 0.4.0


Bazaar Subversion Plugin allows bzr direct access to Subversion repositories. more>>
Bazaar Subversion Plugin allows bzr direct access to Subversion repositories. This allows bzr branch, bzr push, bzr pull, and bzr co to work directly against Subversion repositories.
The plugin can at the moment be used to commit to, pull from, merge from, push to and view logs of Subversion branches from Bazaar.
It is fully functional, but has only been tested on a few different Subversion branches (samba, wireshark, subversion, cups), so should be considered alpha.
Main features:
- Connecting to remote Subversion repositories over all protocols supported by Subversion itself (at present: svn://, svn+ssh://, http:// (webdav), file://) as well as dump files. Checkouts, lightweight checkouts and branching works.
- Track Bazaar merges in Subversion. Merged revisions show up as ghosts.
- Subversion working copies. Can be modified, queried (bzr status on a vanilla working copied created with svn co works) and committed from.
- Committing to Subversion from Bazaar.
- Push Bazaar revisions to Subversion. These revisions will show up in Subversion as a commit with the pushed revision as one of the parents.
- Follow branch copies. Revision history is not truncated when a branch was copied in Subversion.
- Efficiently uses network bandwidth.
- Recognizes file metadata (executable bits, symlinks).
- import-svn command with functionality similar to svn2bzr.
- Ability to track merges done with SVK (http://svk.elixus.org/) and write merges from SVK/Svn branches in a format understandable by SVK.
- Generates consistent file ids and revision ids. Two branches made using this plugin of the same Subversion branch will result in *exactly* the same Bazaar branch.
- Handles complex operations in Subversion: committing to two branches at once, upgrading directories to branches, copies from early revisions, ...
<<less
Download (0.055MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
810 downloads
PAR::WebStart 0.18

PAR::WebStart 0.18


PAR::WebStart is a Perl implementation of Javas WebStart. more>>
PAR::WebStart is a Perl implementation of Javas WebStart.

SYNOPSIS

my $file = hello.pnlp;
my $ws = PAR::WebStart->new(file => $file);
$ws->fetch_pars() or die $ws->{ERROR};

my $tmpdir = $ws->{tmpdir};
chdir($tmpdir) or die qq{Cannot chdir to "$tmpdir": $!});

my @args = @{$ws->run_command()};
die qq{Failed to get WebStart args: $ws->{ERROR}}) unless (@args);
system(@args) == 0 or die qq{Execution of system(@args) failed: $?};

This a Perl version of Javas WebStart technology; see http://java.sun.com/j2se/1.4.2/docs/guide/jws/developersguide/overview.html for details.

PAR-WebStart is a helper application associated with a browser. When a user clicks on a link that points to a PNLP [PAR Network Launch Protocol] launch file (a special XML file), it causes the browser to launch PAR-WebStart, which then automatically downloads, caches, and runs the specified PAR-based application.

<<less
Download (0.023MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5