edit 0.001
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1903
RTx::RT34::Bulk::CF::Edit 0.001
RTx::RT34::Bulk::CF::Edit is a Perl module to allow bulk editing of custom fields. more>>
RTx::RT34::Bulk::CF::Edit is a Perl module to allow bulk editing of custom fields.
<<less Download (0.014MB)
Added: 2007-01-23 License: Perl Artistic License Price:
1006 downloads
Ekahau 0.001
Ekahau is a synchronous interface to Ekahau location sensing system. more>>
Ekahau is a synchronous interface to Ekahau location sensing system.
SYNOPSIS
The Ekahau class provides a straightforward synchronous interface to the Ekahau location sensing systems YAX protocol. The YAX protocol itself is asynchronous, so this module tries its best to hide that from you.
This class inherits from Ekahau::Base, and you can use methods from that class. An alternative, event-driven interface is provided by Ekahau::Events.
This class implements methods for querying the Ekahau Positioning Engine, and processing the responses. Each Ekahau object represents a connection to the Ekahau server. Some methods send queries to the server, others receive responses, and still others do both. This class tries to hide the asynchronousness of the YAX protocol from you.
The basic mechanism allows you to send requests, and wait for responses. If other responses unrelated to the one youre waiting for come in, they will be queued and sent to you when you ask for them. Some methods will first send a request then wait for the response, handling all of the details internally.
<<lessSYNOPSIS
The Ekahau class provides a straightforward synchronous interface to the Ekahau location sensing systems YAX protocol. The YAX protocol itself is asynchronous, so this module tries its best to hide that from you.
This class inherits from Ekahau::Base, and you can use methods from that class. An alternative, event-driven interface is provided by Ekahau::Events.
This class implements methods for querying the Ekahau Positioning Engine, and processing the responses. Each Ekahau object represents a connection to the Ekahau server. Some methods send queries to the server, others receive responses, and still others do both. This class tries to hide the asynchronousness of the YAX protocol from you.
The basic mechanism allows you to send requests, and wait for responses. If other responses unrelated to the one youre waiting for come in, they will be queued and sent to you when you ask for them. Some methods will first send a request then wait for the response, handling all of the details internally.
Download (0.034MB)
Added: 2007-05-24 License: Perl Artistic License Price:
897 downloads
edittwiki 0.1.4
edittwiki provides an external editor wrapper for TWiki wiki topics. more>>
edittwiki provides an external editor wrapper for TWiki wiki topics.
editTwiki lets you use your favorite editor to edit TWiki topics. It is written in Python and compiled into a Java jar using Jython, which makes it a regular Java application packaged into a jar.
<<lesseditTwiki lets you use your favorite editor to edit TWiki topics. It is written in Python and compiled into a Java jar using Jython, which makes it a regular Java application packaged into a jar.
Download (0.85MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
985 downloads
bitedit 0.9.4
bitedit is a simple ncurses program for editing a file. more>>
bitedit is a simple ncurses program for editing a file. It allows you to directly edit of the individual bits of a binary file in a graphical fashion. It is useful for editing bitmap font files.
<<less Download (0.016MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1662 downloads
DBIx::CGITables 0.001
DBIx::CGITables is a Perl module for easy DB access from a CGI. more>>
DBIx::CGITables is a Perl module for easy DB access from a CGI.
SYNOPSIS
use DBIx::CGITables;
my %parameters=();
my $query=DBIx::CGITables->new(%parameters));
$query->search_execute_and_do_everything_even_parse_the_template();
This module is under development - and this version is not tested very well. The documentation might not be completely in sync with the latest changes, and the documentation is not optimized for easy understanding at the moment. Sorry.
DBIx::CGITables is made for making database access through CGIs really easy.
Its completely template-oriented. The templates are in HTML::Template format. Some templates might be set up quickly by using DBIx::CGITables::MakeTemplates; see the doc for this module. Some web designer should fix the templates a bit.
The template approach might make the system a bit "static". Gerald Richter has another approach based upon HTML::Embperl (not published at the time I write this), if youd better like a more dynamic system. Anyway, I find it quite important not to mix HTML and code - the HTML documents should be easy to manipulate by non-technical web editors.
Ideally, HTML and (language-dependent) content should be splitted. I think such things might be done better by using Zope than cgis.
The database handling is done by DBIx::Recordset - this module gets its parametres first from a CGI query, then it might be overridden or completed by a parameter file, and the caller (your .cgi script or whatever) is also free to modify or add parameters.
Im hoping that anybody should get a working (though, probably ugly) CGI interface to any kind of database simply:
1. Run DBIx::CGITables::MakeTemplates (see the pod)
2. Create the script given above at SYNOPSIS
3. Set up the webserver correct.
4. If youre not satisfied with the look, try to edit the html templates.
5. If youre not satisfied with the functionality, try reading the rest of this documentation, and the DBIx::Recordset documentation.
6. If youre still not satisfied with the functionality and/or you find bugs, hack the code and submit the patches to the mailinglist and/or me and/or (if DBIx::Recordset is affected) Gerhard Richter. If youre not a perl hacker, or if you dont have time, send a mail about whats wrong and/or whats missing to the mailinglist anyway. Or privately to me if you dont want to write to a mailinglist.
<<lessSYNOPSIS
use DBIx::CGITables;
my %parameters=();
my $query=DBIx::CGITables->new(%parameters));
$query->search_execute_and_do_everything_even_parse_the_template();
This module is under development - and this version is not tested very well. The documentation might not be completely in sync with the latest changes, and the documentation is not optimized for easy understanding at the moment. Sorry.
DBIx::CGITables is made for making database access through CGIs really easy.
Its completely template-oriented. The templates are in HTML::Template format. Some templates might be set up quickly by using DBIx::CGITables::MakeTemplates; see the doc for this module. Some web designer should fix the templates a bit.
The template approach might make the system a bit "static". Gerald Richter has another approach based upon HTML::Embperl (not published at the time I write this), if youd better like a more dynamic system. Anyway, I find it quite important not to mix HTML and code - the HTML documents should be easy to manipulate by non-technical web editors.
Ideally, HTML and (language-dependent) content should be splitted. I think such things might be done better by using Zope than cgis.
The database handling is done by DBIx::Recordset - this module gets its parametres first from a CGI query, then it might be overridden or completed by a parameter file, and the caller (your .cgi script or whatever) is also free to modify or add parameters.
Im hoping that anybody should get a working (though, probably ugly) CGI interface to any kind of database simply:
1. Run DBIx::CGITables::MakeTemplates (see the pod)
2. Create the script given above at SYNOPSIS
3. Set up the webserver correct.
4. If youre not satisfied with the look, try to edit the html templates.
5. If youre not satisfied with the functionality, try reading the rest of this documentation, and the DBIx::Recordset documentation.
6. If youre still not satisfied with the functionality and/or you find bugs, hack the code and submit the patches to the mailinglist and/or me and/or (if DBIx::Recordset is affected) Gerhard Richter. If youre not a perl hacker, or if you dont have time, send a mail about whats wrong and/or whats missing to the mailinglist anyway. Or privately to me if you dont want to write to a mailinglist.
Download (0.020MB)
Added: 2007-06-19 License: Perl Artistic License Price:
857 downloads
editLyrics 0.2
editLyrics is an amarok script add, modify and edit lyrics. more>>
editLyrics is an amarok script add, modify and edit lyrics. Just click on a track, and select "edit this lyric!" to get a full power editor!
If lyrics are already cached, you can modify it, or you can just write from zero (well, not exactly from zero, you will find the artist and trackname on the top).
<<lessIf lyrics are already cached, you can modify it, or you can just write from zero (well, not exactly from zero, you will find the artist and trackname on the top).
Download (0.009MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1347 downloads
Ksubeditor 0.2
KDE DivX subtitles editor is a good solution for people who create and edit subtitles for DivX movies. more>>
KDE DivX subtitles editor is a good solution for people who create and edit subtitles for DivX movies.
It is able to edit,convert subtitles between different formats, and test subtitles using some linux DivX player (at present Mplayer).
Enhancements:
- After "Save As" correct name on the bar is displayed
- Some compilation problems fixed
- Fixed number of columns in new file after spliting a file
- Fixed problem with editing file created by spliting another one
- Some "segmentation fault" fixes
- Changed "Insert row under" into "Insert row above"
<<lessIt is able to edit,convert subtitles between different formats, and test subtitles using some linux DivX player (at present Mplayer).
Enhancements:
- After "Save As" correct name on the bar is displayed
- Some compilation problems fixed
- Fixed number of columns in new file after spliting a file
- Fixed problem with editing file created by spliting another one
- Some "segmentation fault" fixes
- Changed "Insert row under" into "Insert row above"
Download (0.55MB)
Added: 2005-08-17 License: GPL (GNU General Public License) Price:
1532 downloads
Math::GSL 0.001
Math::GSL is a Perl module for the GNU Scientific Library. more>>
The GNU Scientific Library (GSL) is a C library that has hundreds of functions that are useful to scientists and mathematicians, such as special functions, linear algebra, statistics, etc... Wouldnt it be nice if you could access them all with Perl? Now you can with Math::GSL!
Warning: You are on the bleeding edge, this is alpha code, so if you want to test it out on your platform and report bugs or send patches, then please do! Yes, there is just about no documentation right now. Anyone care to write some?
<<lessWarning: You are on the bleeding edge, this is alpha code, so if you want to test it out on your platform and report bugs or send patches, then please do! Yes, there is just about no documentation right now. Anyone care to write some?
Download (0.008MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
863 downloads
wmradio 0.1
wmradio is small FM radio application. more>>
wmradio is small FM radio application. wmradio support skins and 6 preset stations.
Installation:
1. Edit Makefile and set PREFIX
2. make
3. make install
Configuration:
configuration is stored in file ~/.wmradio
Preseting:
1. Tune station what you want
2. click right mouse button into station button
<<lessInstallation:
1. Edit Makefile and set PREFIX
2. make
3. make install
Configuration:
configuration is stored in file ~/.wmradio
Preseting:
1. Tune station what you want
2. click right mouse button into station button
Download (0.028MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1120 downloads
Komodo Edit (Linux/x86 libstdc++6) 5.1.1
Komodo Edit is a free, open source, multi-platform, multi-language editor for dynamic languages and Ajax technology. Background syntax checking and syntax coloring catch errors immediately, while autocomplete and calltips guide you as you write. more>>
Komodo Edit (Linux/x86 libstdc++6) 5.1.1 offers an effective tool which functions as a free, open source, multi-platform, multi-language editor for dynamic languages and Ajax technology, including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML.
Background syntax checking and syntax coloring catch errors immediately, while autocomplete and calltips guide you as you write. Available on Windows, Mac OS X and Linux. XPI extensions allow you to create your own plug-ins. XPI extension support provides the same capability as Firefox.
Major Features:
- Multi-language editor
- Multi-language support: Advanced support for:
-
- Browser-side languages: CSS, HTML, JavaScript and XML
- Server-side languages: Perl, PHP, Python, Ruby and Tcl
- Web template languages: RHTML, Template-Toolkit, HTML-Smarty and Django
- Autocomplete
-
- Call Tips
- Autocomplete and calltips
- Write code faster and shorten the learning curve with code completion that guides you as you work
- CSS, HTML, JavaScript, Perl, PHP, Python, Ruby, Tcl, XML and XSLT.
- Schema-based XML/HTML completion
- Multiple-language file support, such as CSS and JavaScript completion in HTML
- Support for adding third-party libraries
- Interpreter version differentiation of built-in and standard library information
- Multi-language file support
-
- Correct syntax coloring of multi-language files and templated files, common in many web programming frameworks. Add custom language support (User-Defined Languages or UDL, used to provide support for RHTML, Template-Toolkit, HTML-Mason, Smarty and Django).
- Standard editing features
-
- Code commenting, auto-indent and outdent, block selection, incremental search, reflow paragraph, join lines, enter next character as raw literal, repeat next keystroke and clean line endings on "save".
- Syntax checking
-
- Instant feedback for all fully-supported languages.
- Syntax coloring
-
- Spot errors easily and improve readability and context, even in multi-language files (unique to Komodo!).
- Vi emulation
-
- Modal Vi keybindings emulate navigation, text insertion and command behavior. Custom commands can be implemented by adding Komodo macros to a Vi Commands Toolbox folder.
- Emacs keybindings
-
- Emacs-like keybinding scheme supports new editor features modeled on Emacs, such as transient marks (similar to the Emacs "mark ring"), repeat next command and reflow paragraph.
- HTML preview
-
- Check HTML, XML and CSS files side-by-side or in a browser, using arbitrary files or URLs.
- Multilingual Input Method Editor (IME) support
-
- Use your standard keyboard to enter multi-byte characters, such as Simplified Chinese, Japanese and Korean.
- Code snippets
-
- Store any piece of code for reuse.
- Code folding
-
- Work quickly and efficiently with large sections of code.
- Multi-document editing
-
- Easily work on multiple documents simultaneously using multiple tab groups, split view, and cross-document search.
- Tutorials
-
- Easily master editing features.
- Project manager: Convenient, flexible organization of all project elements.
- Live Folders
-
- Project view displays the current contents of corresponding file system directory.
- Virtual Folders
-
- Explicitly maintained multi-purpose containers for any project or Toolbox component, containing pointers to selected components from different file system locations.
- Toolbox
- Store it
-
- Store virtually anything, including configurable "Run" commands, macros, code snippets, URLs, Live and Virtual Folders, templates, menus, toolbars and remote files.
- Share it
-
- Share a Toolbox with networked team members or distribute valuable Toolbox items to other Komodo users with the import/export function.
- Extensibility: XPI Extensions
- Create your own plug-ins. XPI extension support provides the same capability as Firefox, with all standard Mozilla APIs based on XUL, XBL, and XPCOM
- Create your own plug-ins. XPI extension support provides the same capability as Firefox, with all standard Mozilla APIs based on XUL, XBL, and XPCOM
Enhancements:
- Editor History
- Hyperlinks
- Fast-open dialog
- Find highlighting
Requirements:
- Red Hat Enterprise Linux 5 or later
- CentOS 5.0 or later
- Fedora Core 8 or later
- OpenSUSE 10.2 or later
- Ubuntu 7.04 or later
- hx86 or x86_64 architecture
- 500 MHz or faster processor
- 512 MB RAM (1 GB+ recommended)
- 200 MB hard disk space
WareSeeker Editor
Download (37.23MB)
Added: 2009-04-07 License: Freeware Price: $0.00
465 downloads
Other version of Komodo Edit
Price: $0.00
License:Freeware
License:Freeware
Price: $0.00
License:Freeware
License:Freeware
Price: $0.00
License:Freeware
License:Freeware
Price: $0.00
License:Freeware
License:Freeware
License:Freeware
JRelaxTimer 1.0.001
JRelaxTimer is a timer (or alarm clock) that allows Web-users to open specific Web-pages at selected time inter more>>
JRelaxTimer is a timer (or alarm clock) that allows Web-users to open specific Web-pages at selected time intervals. JRelaxTimer, for example, could be installed on the company Intranet and used by employees to execute specific tasks at selected time intervals.
Built as a browser-independent and highly-configurable Java Applet, JRelaxTimer could be easily customized with your own graphics and time format to achieve an unlimited variety of appearances and behaviors. JRelaxTimer includes by default 232 images (13 different sets of digits).
JRelaxTimer is composed by some independent components that could be showed or hidden by option (logo, buttons, displays, selectors)
Main features:
- browser-independent, works fine with any browser that support at least Java 1.1
- support two different page selection methods
- customizable background colors
- customizable background images
- customizable graphic images for digits and symbols
- 232 ready to use images (13 sets of digits)
- support for image transparencies
Enhancements:
- The license was changed to the GPL.
<<lessBuilt as a browser-independent and highly-configurable Java Applet, JRelaxTimer could be easily customized with your own graphics and time format to achieve an unlimited variety of appearances and behaviors. JRelaxTimer includes by default 232 images (13 different sets of digits).
JRelaxTimer is composed by some independent components that could be showed or hidden by option (logo, buttons, displays, selectors)
Main features:
- browser-independent, works fine with any browser that support at least Java 1.1
- support two different page selection methods
- customizable background colors
- customizable background images
- customizable graphic images for digits and symbols
- 232 ready to use images (13 sets of digits)
- support for image transparencies
Enhancements:
- The license was changed to the GPL.
Download (0.25MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1372 downloads
Edit Brushes 1.0
Edit Brushes is a script in Python for The Gimp, this script allows you to generate, delete, duplicate and EDIT brushes. more>>
Edit Brushes is a script in Python for The Gimp, this script allows you to generate, delete, duplicate and EDIT brushes generated from images.
<<less Download (MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1136 downloads
SourceEditor 0.2
SourceEditor allows you to view and Edit source of HTML element. more>>
SourceEditor allows you to view and Edit source of HTML element.
View and Edit source of HTML element.
Use the button on status bar to activate/desactivate and the double click or the context menu to edit source of the selected element
<<lessView and Edit source of HTML element.
Use the button on status bar to activate/desactivate and the double click or the context menu to edit source of the selected element
Download (0.014MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
930 downloads
Magni 0.1
Magni is simple GTK-based object browser and editor for the Midgard database and system framework. more>>
Magni is simple GTK-based object browser and editor for the Midgard database and system framework.
Main features:
- browse registered classes
- browse objects tree
- create new objects
- edit existing objects
- delete exisiting objects
<<lessMain features:
- browse registered classes
- browse objects tree
- create new objects
- edit existing objects
- delete exisiting objects
Download (0.11MB)
Added: 2006-09-05 License: LGPL (GNU Lesser General Public License) Price:
1144 downloads
KImageMapEditor 1.0.1
KImageMapEditor is a tool for Linux/KDE that allows you to edit image maps of HTML files. more>>
KImageMapEditor is a tool for Linux/KDE that allows you to edit image maps of HTML files.
KImageMapEditor project can be fully integrated with Quanta since it is based on KPart technology.
<<lessKImageMapEditor project can be fully integrated with Quanta since it is based on KPart technology.
Download (0.63MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1196 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above edit 0.001 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed