Main > Free Download Search >

Free version control software for linux

version control

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2705
Gnome Control Center 2.26.0 / 2.27.4.1

Gnome Control Center 2.26.0 / 2.27.4.1


Gnome Control Center is GNOMEs main interface for configuration of various aspects of your desktop. more>> <<less
Added: 2009-07-17 License: LGPL Price: FREE
13 downloads
Control C or Linux 1.3

Control C or Linux 1.3


Monitor all data on your clipboard. more>> What is ControlC? Its pretty simple actually. Have you ever copied something on a webpage or in an email that you later needed to look at again but couldnt remember where you saw it?
Have you ever copied a link to a webpage and couldnt for the life of you remember the link later on?
ControlC fixes that. Anytime you copy textual content, ControlC will upload that text to our server to store under your account. When the text is uploaded, it is encrypted using your password as the key (which we will never have access to). When you need to retrieve the text, or would like to share it with other users, you can login to your account and make the items public, or simply review them for your own needs.
You can search other users copied links and text to find other people that share the same interests as you. You can make friendship relationships with other users, and star items of interest to make finding them again easy. You are encouraged to social interact with other users on our site - you will be surprised what you can find when you do!
<<less
Download (206KB)
Added: 2009-04-14 License: Freeware Price: Free
193 downloads
SiVeCo 0.2.8

SiVeCo 0.2.8


SiVeCo is a simple version control program. more>>
SiVeCo is a simple version control program. It is very easy to install and use, and has nearly no dependencies. This application is meant to be used for someone working alone on smaller projects, with contributors sending patches infrequently.
Enhancements:
- Bugs were fixed.
- The ability to export data to other SCMs was added, and an example for mercurial is included.
<<less
Download (0.043MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
801 downloads
XWiki 1.1 Milestone 4

XWiki 1.1 Milestone 4


XWiki project is an open source wiki written in Java and under a LGPL license. more>>
XWiki project is an open source wiki written in Java and under a LGPL license.
A wiki is a website that allows you to collaborate with others. XWiki offers all the features that you can find in a typical wiki. In addition, XWiki is a second generation wiki (a.k.a an application wiki), ideally suited for developing collaborative web applications.
Main features:
- Page edition
- Use simple wiki syntax to format text, create tables, create links, display images, etc. Alternatively use a powerful WYSIWYG editor to edit documents content. Document Lifecycle Document Lifecycle
- Edit, Show, Print and Delete documents.
- Version Control Version Control
- Any change made in XWiki is saved under version control, meaning you can view any previous version of a page, compare different versions or rollback to any past version. Attachments Attachments
- Attach as many files as you want to any page. These files can then be referenced and used in page contents.
- Rights Management Rights Management
- Control who can view, edit or delete documents in a flexible manner. Apply rights to a document, a space or an entire wiki. Full-text Search Full-text Search
- Find easily any data or meta-data associated with a document.
- Spaces Spaces
- Organize your documents by grouping them together by domain. Plugins Plugins
- Use or develop Java plugins to extend XWiki features.
- Programming Programming
- Use XWikis programming API directly into your pages (Velocity or Groovy) to perform advanced formatting, layout or anything really. Skins Skins
- Completely customize document templates, add menus, modify CSS files. Youre in complete control of your look & feel.
<<less
Download (MB)
Added: 2007-08-16 License: LGPL (GNU Lesser General Public License) Price:
799 downloads
Distributed Access Control System 1.4.20

Distributed Access Control System 1.4.20


Distributed Access Control System is a complete, light-weight, single sign-on and role-based access control system. more>>
Distributed Access Control System is a complete, light-weight, single sign-on and role-based access control system distributed under an open source license. It provides:
- extended authentication and role-based access control capabilities for Apache-based web services, CGI programs, and virtually any program or script;
- a wide array of flexible, modular, and efficient authentication methods, including two-factor authentication and hardware tokens;
- powerful, rule-based authorization checking that can be applied transparently to any resource or activity (such as web services, web content, and program features) by Apache-based web services and CGI programs, or virtually any program or script;
- an Apache 2.0/2.2 module, suite of CGI programs, and collection of command line tools for Unix-type platforms, such as Linux, FreeBSD, and Solaris.
Enhancements:
- This release includes an important bugfix to local_passwd_authenticate that prevents invalid passwords from being accepted.
- Some minor bugs have also been addressed, including some problems with dacs.quick(7).
<<less
Download (MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
803 downloads
Net::LDAP::Control::VLV 0.34

Net::LDAP::Control::VLV 0.34


Net::LDAP::Control::VLV is an LDAPv3 Virtual List View control object. more>>
Net::LDAP::Control::VLV is an LDAPv3 Virtual List View control object.

SYNOPSIS

use Net::LDAP;
use Net::LDAP::Control::VLV;
use Net::LDAP::Constant qw( LDAP_CONTROL_VLVRESPONSE );

$ldap = Net::LDAP->new( "ldap.mydomain.eg" );

# Get the first 20 entries
$vlv = Net::LDAP::Control::VLV->new(
before => 0, # No entries from before target entry
after => 19, # 19 entries after target entry
content => 0, # List size unknown
offset => 1, # Target entry is the first
);
$sort = Net::LDAP::Control::Sort->new( order => cn );

@args = ( base => "o=Ace Industry, c=us",
scope => "subtree",
filter => "(objectClass=inetOrgPerson)",
callback => &process_entry, # Call this sub for each entry
control => [ $vlv, $sort ],
);

$mesg = $ldap->search( @args );

# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );

# Set the control to get the last 20 entries
$vlv->end;

$mesg = $ldap->search( @args );

# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );

# Now get the previous page
$vlv->scroll_page( -1 );

$mesg = $ldap->search( @args );

# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );

# Now page with first entry starting with "B" in the middle
$vlv->before(9); # Change page to show 9 before
$vlv->after(10); # Change page to show 10 after
$vlv->assert("B"); # assert "B"

$mesg = $ldap->search( @args );

<<less
Download (0.24MB)
Added: 2007-08-14 License: Perl Artistic License Price:
801 downloads
Bky 1.1.0

Bky 1.1.0


Bky is a minimalistic, distributed Version Control System/Source Code Management tool. more>>
Bky is a minimalistic, distributed Version Control System/Source Code Management tool. Bky uses rsync as a backend to store revisions as complete trees, optimizing the size by storing unchanged files as hard links.
Main features:
Distributed
- The repository is not stored in a central server as in CVS or Subversion, but as a subdirectory inside your working directory, like Arch, Darcs or Linus Torvalds git. Developers communicate via patches.
Cheap branches
- Just copy your tree to another directory and youve started a new branch.
- Old history is easily pruned Legacy revisions can just be deleted or moved to another place with your usual filesystem tools.
Safety
- Any given revision under the repository is a directory with all your files that can be used, copied or stored as-is.
Repository is easily manipulable
- As every revision is stored as plain files, you can delete, add or modify files, or update the commit message without interfering.
No need for special commands to put files under version control
- Just create a file in your working directory and it will automatically be version-controlled. Uninteresting files as object files, libraries or other generated files are automatically ignored. Also, there is support for .cvsignore files.
Small dependencies
- Bky is a shell script. It needs rsync, diff and the usual Unix basic tools. You also need a filesystem that support hard and symbolic links. Thats it. Its just a version control system.
Enhancements:
- This release includes a script to convert a bky repository into a git one.
<<less
Download (0.011MB)
Added: 2007-08-13 License: BSD License Price:
491 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
Rule Set Based Access Control 1.3.5

Rule Set Based Access Control 1.3.5


Rule Set Based Access Control (RSBAC) is a Free Software security extension for current Linux kernels. more>>
Rule Set Based Access Control (RSBAC) is a Free Software security extension for current Linux kernels. Rule Set Based Access Control is based on the Generalized Framework for Access Control (GFAC) by Abrams and LaPadula and provides a flexible system of access control based on several modules.
All security relevant system calls are extended by security enforcement code. This code calls the central decision component, which in turn calls all active decision modules and generates a combined decision. This decision is then enforced by the system call extensions.
Main features:
- Free Open Source (GPL) Linux kernel security solution
- Independent of governments and big companies
- Several well-known and new security models, like MAC, ACL and RC
- On-access virus scanning with the Dazuko interface
- Detailed control over individual user and program network accesses
- Fully access controlled kernel level user management
- Any combination of security models possible
- Easily extensible: write your own model for runtime registration
- Support for latest kernels and stable for production use
Enhancements:
- This release relates to kernel 2.4.34.5 and 2.6.22.1.
- There are important fixes with some compilation errors and an important bug with User Management password hashing, introduced with the newer 2.6 kernel crypto API.
- Some security has been added with safety measures against null pointers.
<<less
Download (0.36MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
831 downloads
wxPropertyGrid 1.2.8

wxPropertyGrid 1.2.8


wxPropertyGrid is a property sheet control for wxWidgets. more>>
wxPropertyGrid is a property sheet control for wxWidgets.

wxPropertyGrid is a specialized two-column grid for editing properties such as strings, numbers, flagsets, string arrays, and colours.

<<less
Download (0.88MB)
Added: 2007-07-09 License: Open Software License Price:
838 downloads
Ham Radio Control Libraries 1.2.6.2

Ham Radio Control Libraries 1.2.6.2


Ham Radio Control Libraries, Hamlib for short, is a development effort to provide a consistent interface for programmers. more>>
Ham Radio Control Libraries is a development effort to provide a consistent interface for programmers wanting to incorporate radio control in their programs.

Hamlib is not a complete user application, rather, it is a software layer intended to make controlling various radios and other shack hardware much easier.

Hamlib will allow authors of such software as logging programs, digital communications programs, or those wanting to develop the ultimate radio control software to concentrate on the user interface and the basic function of the program rather than radio control.

Most recent amateur radio transceivers allow external control of their functions through a serial interface. Unfortunately, control commands are not always consistent across a manufacturers product line and each manufacturers product line differs greatly from its competitors.

Hamlib attempts to solve this problem by presenting a "virtual radio" to the programmer by providing an API to actions such as setting a given VFOs frequency, setting the operating mode, querying the radio of its current status and settings, and giving the application a list of a given radios capabilities. Unfortunately, what can be accomplished by hamlib is limited by the radios themselves and some offer very limited capability.

<<less
Download (1.4MB)
Added: 2007-07-01 License: LGPL (GNU Lesser General Public License) Price:
850 downloads
moap 0.2.5

moap 0.2.5


moap is a swiss army knife for project maintainers and developers. more>>
moap is a swiss army knife for project maintainers and developers. The project aims to help in keeping you in the flow of maintaining, developing and eleasing, automating whatever tasks can be automated.
Main features:
- parse DOAP files and:
- submit releases to Freshmeat
- send out release announcement mails
- version control tools:
- currently supports CVS and SVN
- maintain ignore lists
- check in based on ChangeLog entry
- show diff based on last ChangeLog entry
- developed in Python, with unit tests and coverage
<<less
Download (0.085MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
851 downloads
TribalCMS 5.0.2

TribalCMS 5.0.2


TribalCMS is a powerful content management system (CMS) and extranet. more>>
TribalCMS is a powerful content management system (CMS) and extranet.
TribalCMS is easy to use, allowing a low-budget or simple Web site to be built quickly and at low cost, yet it is backed up with features that make it powerful enough for an enterprise-level extranet, intranet, or large Web site.

It includes an author-publisher system, version control for full audit trails, extranet functionality (based on users and overlapping groups), and many content types: Web pages, downloads, news, events, forums, adverts, hyperlinks; other types can be added. For developers, it can be used as a framework for advanced applications.
<<less
Download (1.2MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
855 downloads
Easy Hosting Control Panel 0.21

Easy Hosting Control Panel 0.21


Easy Hosting Control Panel is designed for hosting multiple domains on a single machine. more>>
Easy Hosting Control Panel is designed for hosting multiple domains on a single machine. It uses LAMP (Linux/Apache/MySQL/PHP).
Easy Hosting Control Panel aims to be easy to install and use, simple, and functional.
Enhancements:
- The installer was improved.
- Known bugs were fixed.
<<less
Download (0.49MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
881 downloads
AJAX Tree Control 0.1

AJAX Tree Control 0.1


AJAX Tree Control is a modified version of SilverStripes tree control. more>>
AJAX Tree Control is a modified version of SilverStripes tree control. It adds dynamic loading of child nodes via AJAX.

The default implementation uses the prototype library to make dynamic requests, but this behavior can be overridden by setting functions on the global Tree object.

There are a few demo Ruby on Rails applications included in the distribution that show how to use and customize the tree.
<<less
Download (0.082MB)
Added: 2007-05-07 License: BSD License Price:
902 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5