Main > Free Download Search >

Free gambas 2 1.9.50 software for linux

gambas 2 1.9.50

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6365
Gambas 2 1.9.50

Gambas 2 1.9.50


Gambas is a basic graphical development environment. more>> <<less
Download (7.6MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
817 downloads
 
Other version of Gambas
Gambas 1.0.19). With Gambas, you can quickly design your program GUI, access MySQL or PostgreSQL databases ... Gambas does not try to be compatible with Visual Basic, and will never be. Im convinced that its
License:GPL (GNU General Public License)
Download (4.3MB)
843 downloads
Added: 2007-07-17
XMLBeans 2.2.0

XMLBeans 2.2.0


XMLBeans project is a technology for accessing XML by binding it to Java types. more>>
XMLBeans project is a technology for accessing XML by binding it to Java types. XMLBeans provides several ways to get at the XML, including:
- Through XML schema that has been compiled to generate Java types that represent schema types. In this way, you can access instances of the schema through JavaBeans-style accessors after the fashion of "getFoo" and "setFoo".
- The XMLBeans API also allows you to reflect into the XML schema itself through an XML Schema Object model.
- A cursor model through which you can traverse the full XML infoset.
- Support for XML DOM.
Start off with your own stuff:
If you want to get right to it with your own XML schema and instance, follow these basic steps:
Install XMLBeans.
Compile your schema. Use scomp to compile the schema, generating and jarring Java types. For example, to create a employeeschema.jar from an employeesschema.xsd file:
scomp -out employeeschema.jar employeeschema.xsd
Write code. With the generated JAR on your classpath, write code to bind an XML instance to the Java types representing your schema. Heres an example that would use types generated from an employees schema:
File xmlFile = new File("c:employees.xml");
// Bind the instance to the generated XMLBeans types.
EmployeesDocument empDoc =
EmployeesDocument.Factory.parse(xmlFile);
// Get and print pieces of the XML instance.
Employees emps = empDoc.getEmployees();
Employee[] empArray = emps.getEmployeeArray();
for (int i = 0; i < empArray.length; i++)
{
System.out.println(empArray[i]);
}
Enhancements:
- Updated to the latest XMLSchema.xsd - January 25, 2006
- Updated XmlBeans to work with SaxonB-8.6.1 in place of SaxonB8.1
- XQuery external variable binding support
<<less
Download (MB)
Added: 2007-05-07 License: The Apache License 2.0 Price:
907 downloads
GMime 2.2.10

GMime 2.2.10


GMime is a set of utilities for parsing and creating messages using the Multipurpose Internet Mail Extension (MIME). more>>
GMime is a set of utilities for parsing and creating messages using the Multipurpose Internet Mail Extension (MIME).

As a developer and user of Electronic Mail clients, I had come to realize that the vast majority of E-Mail client solutions had less-than-satisfactory MIME implementations. More often than not these E-Mail clients created broken MIME messages and/or would incorrectly try to parse a MIME message thus subtracting from the full benefits that MIME was meant to provide. GMime is meant to address this issue by following the MIME specification while also providing programmers with an extremely easy to use application programming interface.

<<less
Download (0.92MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
827 downloads
pBeans 2.0.2

pBeans 2.0.2


pBeans project is a Object/Relational (O/R) database mapping layer. more>>
pBeans project is a Object/Relational (O/R) database mapping layer. It is designed to be simple to use and automated.
The idea is that you save time and effort by simply focusing on writing Java classes, and not worrying about maintenance of matching SQL scripts, schema evolution, XML based schemas, or generating code. The pBeans framework takes care of persisting JavaBeans with little assistance from the developer.
Main features:
- Automatic Table Creation and Schema Evolution- Tables corresponding to JavaBean classes are created on demand. Field types are based, by default, on JavaBean compile-time types. Field type changes and new fields are detected. Manually changing tables (user-managed mode) is also supported.
- Based on Annotated JavaBeans- You define a getter and setter for each bean property. Persisent bean classes only need to be tagged with a @PersistentClass annotation.
- Transitive Persistence- If object A is persisted and it refers to Persistent object B, then object B is automatically persisted. If Persistent object C also refers to B, and C is also persisted, the record for object B in the database is not duplicated.
- Instance Consistency- If you retrieve an object from persistent storage that is already known to exist in main memory, you get a reference to the object in main memory. (Garbage collection is allowed to happen via weak references.)
- Near-Zero Configuration- There is no need to define schemas or anything of the sort in a language other than Java, and there are no code generation steps of any kind. No XML or SQL need to be written, except the necessary to create a database and grant user permissions. However, you can instruct pBeans to let you manage database modifications manually.
- Database features- Transactions and auto-increment IDs (MySQL only) are now supported.
- Flexibility- Via annotations users are allowed to define their own table and field names, the name of the primary key, whether fields are nullable, whether tables are user-managed (not automatically modified), table indexes, unique or otherwise, whether unused fields should be deleted, whether a field is nullable, whether it is renamed from another field (to prevent loss of data when a property is renamed), etc.
- Servlet support- A pBeans store may be easily configured using servlet context parameters (see ServletAccess.)
<<less
Download (1.3MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
912 downloads
Gastify 1.2.2

Gastify 1.2.2


Gastify is a client for app_notify, an asterisk extension. more>>
Gastify is a client for app_notify, an asterisk extension. Gastify project sits in the notification-area of the gnome-panel and displays a libnotify popup when a call arrives. Beside it logs all calls.
Main features:
- an libnotify popup for incoming calls
- a click on the statusicon opens a call-history
<<less
Download (0.024MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
843 downloads
Cafeterra 2.2.0

Cafeterra 2.2.0


Cafeterra provides a message queue-based EAI tool. more>>
Cafeterra provides a message queue-based EAI tool.
Cafeterra is a message queue-based EAI project with a Web user interface for designing, processing, and monitoring inter-application data flows.
Supported connectors are based on an RDBMS, flat files (CSV, fixed length record, XML, HL7, HTML, etc.), LDAP, and SOAP, with others planned.
The main features are message tracking and archival, joining different connectors, an internal scheduler, and raising the flow on events.
Enhancements:
- Support of POP3 and IMAP
- Support of Perl Language in addition to SQL Language for Getmsg, SendMsg, SendMsgBis, AckMsg and GlobalAck
- Evaluate Perl script during design to see if there is any syntax error
- cgi/CafImport.pm : Sort objects; config filename extension handling; remove trailing r
- cgi/Context.pm : handle correctly copying procedure
- cgi/LContainer.pm : remove some trace
- cgi/MFlow.pm : more launch options;
- cgi/Scripts.pm : validate perl scripts (eval)
- cgi/Users.pm : bug when updating user the object attributes were not upadted
- cgi/EN/translate.pm : added some translation
- cgi/FR/translate.pm : idem
- connectors/cafProto.pm : die on open file failure
- connectors/cafpSMTP.pm : bug on attachment; replay_to and fake_to attributes default values
- connectors/refQry.pm : update of datatypeid
- install/Pg/InitSqlScript.pm : Added new protocols/drivers/datatypes/attributes (Mail/POP3/IMAP)
- install/Pg/conf.pm.tpl : Version changed
- install/Pg/d_attrdef.sql : New attributes for new protocols/drivers (Mail/POP3/IMAP)
- install/Pg/d_datatype.sql : New datatypes for new drivers (POP3/IMAP)
- install/Pg/d_driver.sql : New drivers (POP3/IMAP)
- install/Pg/d_protocol.sql : New protocol (Mail)
- install/Pg/index.pl.tpl : Invalidate last value of _currsubmenu
- mains/FlowRt.pm : infinite loop for backtraking when readind dependant messages; avoid die on startsession failure
- mains/FlowTls.pm : classVars misspelling; a query can be an perl script or a sql script
- mains/SFlowRt.pm : handling perl script and sql scripts for getmsg, sendmsg, etc ... in addition to sql script; handle correctly the delins method; LogRbsMessagr enhancement
- mains/SOAPHTTPWS.pm : removed some trace text
- mains/launch.pl : more launch options
- site/help/pageshelp.pm : image reference bug
- site/help/* : translation and orthograph
- site/models/mflowl.html : launch options
- tools/cafUtils.pm : parse mime date
- tools/mydiff.sh : new directories
- DBD/CafeterraDBD.pm : creation
- connectors/cafdPOP3.pm : creation
- connectors/cafdIMAP.pm : creation
<<less
Download (0.73MB)
Added: 2007-02-19 License: LGPL (GNU Lesser General Public License) Price:
978 downloads
chaosircd 2.2.0

chaosircd 2.2.0


chaosircd is an IRC daemon with commands, channel modes, user modes, and flood control. more>>
chaosircd project is an IRC daemon with commands, channel modes, user modes, and flood control implemented as runtime (re)loadable modules.

DNS, AUTH (ident) queries, and proxy scans are done in a single child process to avoid wasting valuable file descriptors and responsiveness.

It features a server-server protocol using timestamps for netsplit handling similar to TS5 (hybrid), and OpenSSL encrypted server-server and client-server connections.

<<less
Download (0.70MB)
Added: 2006-10-12 License: LGPL (GNU Lesser General Public License) Price:
1109 downloads
GnomeSword 2.2.2

GnomeSword 2.2.2


GnomeSword is a Bible study application. more>>
Gnomesword is a Bible study application for GNOME, a graphical desktop enviroment which is available for several Unix and Linux flavors.
GnomeSword is based on SWORD by the CrossWire Bible Society, a framework providing the possibility to study the Bible and additional information like commentaries, dictionaries and other texts using your computer.
Main features:
- Search Bible and Commentary
- Search Personal notes
- Add personal notes to verses
- Bookmark Bible passages
- Bookmark Commentaries
- Bookmark Lexicons and Dictionaries
- Interlinear Page - Display up to five versions
- StudyPad for keeping notes
- Spellcheck for StudyPad and Personal notes (uses gnome-spell)
- Uses modules from the SWORD Project
- Support for Sword Bible, Commentary, Lexicon and General Book modules
<<less
Download (1.7MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
978 downloads
GnoTime 2.2.2

GnoTime 2.2.2


GnoTime provides a to-do list organizer and project timer. more>>
GnoTime provides a to-do list organizer and project timer.
GnoTime is a to-do list tracker and project timer with a built-in invoice generator. It allows users to keep track of how much time they have spent working on particular tasks, maintain a diary of that work, and create invoices with task-specific billing fees and rates.
Main features:
- Multiple To-Do Lists that can be sorted by the priority/importance of the tasks in the list. The to-do items can be organized into categories, arranged in a hierarchical way. This makes it easy to maintain both business and personal items in the list, or handle many different projects, while keeping them separate from each other.
- A pair of Diary/Journal areas that can be used to keep long and detailed notes and diary entries. The project description area allows a multi-paragraph description or status to be typed in. The diary area allows day-to-day notes to be associated with a set of timestamps, so that one has a record of what one did on any given day.
- A Running Timer, with time totals, for each project/task. One starts the timer by clicking on a task: it will measure the amount of time that you are in front of the computer. If it detects that the keyboard/mouse are idle, it will stop the clock. If the clock stays stopped too long, it will nag you to start it up again. You can view time totals by day, week, month or year.
- A Billing Status dialog for each diary entry. You can mark any given diary entry as bill-able/non-bill-able, paid or pending, and set the billing rate. Each project can also be marked up with a set of project-planning information: planed start, end and due dates, hours to finish, percent-complete. This is in addition to assigning an urgency/importance to each project, as well as a status (completed/in-progress not-started/canceled).
- A half-dozen different HTML Reports that can slice and dice your lists. Theres a Journal report that shows all of the diary entries for one given project. Theres an Invoice report that summarizes the time spent on each entry, and computes a dollar amount for it. Theres a Status Report that prints the title of each project, together with the paragraph-long descriptions of each. Theres a ToDo report, which prints only the project title, the importance/urgency, and the completed/in-progress/not-started status. The Daily report summarizes the total time spent on a day-by-day basis, and lists each of the projects that were worked on in a given day. Each of these reports can be customized. And, because theyre HTML, you can even publish them as web pages. (Yes, Ive thought of using GnoTime as a weblog management/publishing tool).
Enhancements:
- Build against QOF version 0.6.0, if available.
- Fix issue where yelp doesnt display an entry for gnotime when browsing because it doesnt recognize the entry
- Fix sourceforge bug [ 799077 ] projects blanked when first time user tries to sort
- fix broken leap-year calculation, leading to bugs sourceforge bugs [ 983408 ] and [ 1114205 ]
- Fix crash due to hoverhelp timer popping after a report window is closed.
- Change activity report to display date/time in two distinct html table columns (prettier alignment)
- Bug fix: sourceforge bug report fixed [ 877193 ] toolbar wont go to/stay in text-only mode
- Bug fix: editing time brings up wrong report
- fedora .spec file is out of date and rpm cannot build rpm
- Fix bug involving copy of old gnotime files to a new machine on which gnotime has never been run before.
- Fix sourceforge bug [ 1276458 ] "Empty" appears in diary entry
- Apply sourceforge patch 1176719 Extensible fix for gtkhtml3 building
- Apply 1171394 Adds separate timeout for "No Project" dialog
- Apply sourceforge patch 085911 Add "-" value for status field
- Apply sourceforge patch 074658 Add wordwrapping to diary entry boxes
- Apply sourceforge patch 1074458 Fix a crash when invoking help
- Apply sourceforge patch 1038701 Fix to Activity item in popup menu
- Apply sourceforge patch 1027582 Build system update for qof inclusion
- Fix idle time so that it works with Linux 2.6 kernel /proc/interrupts
- use %e to see the estimated sizing of a project in the logfiles
- Apply new pt_BR translation from Goedson Teixeira Paixao
- Fix for Debian Bug #250776, change widget visibility in the edit interval dialog
<<less
Download (1.3MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
983 downloads
Gdump 1.2

Gdump 1.2


Gdump is a very very simple netool with WHOIS an NETSTAT developed in Gambas. more>>
Gdump is a very very simple netool with WHOIS an NETSTAT developed in Gambas..so depends on it.

required netstat and whois in the standard PATH=/usr/bin

This is my first application..hope to improve myself sorry.

Interface and languages are subject to improvement too.

Tnx to Linux-pro for help in code...

<<less
Download (0.036MB)
Added: 2006-06-02 License: GPL (GNU General Public License) Price:
1242 downloads
GGI 2.2.2

GGI 2.2.2


GGI stands for General Graphics Interface, and it is a project that aims to develop a reliable, stable and fast graphics system. more>>
GGI stands for General Graphics Interface, and it is a project that aims to develop a reliable, stable and fast graphics system that works everywhere. We want to allow any program using GGI to run on any platform, requiring at most a recompile.
Historically, GGI was developed in order to provide a unified interface to manage access to graphics hardware under Linux, to avoid the conflicts and instability arising from the direct access of hardware by competing graphics systems such as X and svgalib.
GGI project is now focussed on developing a set of portable user-space libraries, with an array of different backends or targets (eg. framebuffer, X, quartz, directx).
While GGI no longer aims to manage direct access to graphics hardware, we provide a target to use the interfaces provided by our associated KGI Project[->], which is concerned with providing the necessary kernel level support (protection, virtualization and abstraction) through a fast, secure and portable Kernel Graphics Interface.
Developed in a professional manner, the clean design, stability and scalability of GGI make it excellent in embedded, production and research environments, and it is user-supported with complete source.
The GGI project provides various libraries, of which the two most fundamental are LibGII (for input-handling) and LibGGI (for graphical output). All other packages add features to these core libraries, and so depend on one or both of them; for a more in-depth explanation of package categories, see the longer introduction to GGI.
Enhancements:
- Bootstrapping (aka running autogen.sh) now works with automake 1.10.
- display-lcd823, display-vgl, display-tile, display-quartz, crossblit, and generic blitting operations have been fixed.
<<less
Download (4.5MB)
Added: 2007-01-28 License: BSD License Price:
1000 downloads
Batik 2.2

Batik 2.2


Java classes to let you create a custom utility to find and delete all junk files on your machine. Use one of the three scripts supplied as an example, to create your own XXX.java source code file then compile and use to rapidly clean your drive of junk. This program requires some elementary Java programming skill. more>>

Batik - Java classes to let you create a custom utility to find and

delete all junk files on your machine. Use one of the three

scripts supplied as an example, to create your own XXX.java

source code file then compile and use to rapidly clean your

drive of junk.

This program requires some elementary Java programming skill.

To compile

E:

cd commindprodbatik

javac *.java

to run, make sure the current drive in on the classpath. See

http://mindprod.com/jgloss/classpath.html

java com.mindprod.batik.YourClass


Enhancements:
Version 2.2

gets rid of 12 ghosts delete_me files


System Requirements:
<<less
Download (952Kb)
Added: 2007-08-27 License: Free Price: Free
14 downloads
WmG 2.0.2

WmG 2.0.2


WmG is a dockapp plugin for Gaim. more>>
WmG applet is a dockapp plugin for Gaim. That is, once the plugin is started a dockapp appears, which can be conviniently dragged to the windowmaker dock.
The dockapp shows the top 3 buddies from Gaim, sorted by whatever algorithm was selected in the Gaim preferences. Clicking either of the buddies causes a new conversation window to be created for that buddy (unless one already exists, in which case the existing one will be used).
Additionally, the dockapp features a scrolling message thingy, which displays events occurring, such as buddies logging on and off, becoming idle, going away or coming back.
WmG was selected as the name of this program, because WmGaim was already spoken for.
Version restrictions:
- Unloading the plugin unfortunately requires a restart of gaim.
- No protocol mini-icons are available for protocols other than msn and icq
Enhancements:
- This release fixes compilation issues with the latest Gaim betas, and introduces some graphical representation of buddy status for ICQ buddies.
<<less
Download (0.017MB)
Added: 2007-02-02 License: GPL (GNU General Public License) Price:
994 downloads
lnkMusic 0.1.9

lnkMusic 0.1.9


lnkMusic project is a new and cool interface for MPD (Music player daemon, www.musicpd.org ). more>>
lnkMusic project is a new and cool interface for MPD (Music player daemon, www.musicpd.org ). I created it to make a very powerful and easy to use player, just like cool programs like amarok are. It is written in gambas so u need to install it before using lnkmusic.

It has some nice features like playlist sorting and a nice tray system that lets you control mpd by the tray tooltip without having to open the main window. The tag browser is amarok-like with an integrated search engine.

Try it and enjoy!

<<less
Download (0.35MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
805 downloads
gbDVDenc 0.3.5

gbDVDenc 0.3.5


gbDVDenc is an easy to use GUI for mencoder to rip & encode DVD into mpeg4 files. more>>
gbDVDenc is an easy to use GUI for mencoder to rip & encode DVD into mpeg4 files. gbDVDenc is written in Gambas.
gbDVDenc project needs Mplayer and/or Mencoder and lsdvd to work.
Main features:
- Selection of part of the track by chapters or minutes:seconds
- Audio resample.
- Volume gain.
- Subtitles
- Deinterlace.
- Auto-cropping (with preview)
- Resize.
- Fps conversion.
- Integrated bitrate calculator.
- Save & load of configuration files.
- Italian and english language
Enhancements:
- NEW: Redesigned Log window.
- NEW: Added support for MP4 codec (for PSP video).
- NEW: Added support for Ogg Theora codec.
- NEW: Added option to normalize audio volume.
- NEW: Added delogo option to mask TV stations logo.
- NEW: Added post-encoding command option (useful to shutdown the pc when - finished encoding).
- NEW: Added comments to matrix editor.
- NEW: New icons (thanks Dennis!)
- UPD: Updated french translation (thanks Johan!)
- BUGFIX: Some bugfixes. :-)
- BUGFIX: Fixed and changed OGG encoding.
- BUGFIX: Wait form now remembers its position.
- BUGFIX: Fixed bitrate calculator with ac3 sound.
- BUGFIX: Fixed some bugs in the resize algorithm.
<<less
Download (0.14MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1365 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5