| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Scriptol PHP Compiler |
script | PHP | Free Additional Info: Mozilla 1.1 |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | Scriptol Php Compiler 6.3 |
windows | Software Development->Development Kits | Free |
View Detail
|
|||||||||
A fast compiler for the new object-oriented Scriptol programming language This compiler produces standalone Php code or run the script , or produce dynamic web pages. Scriptol Php Compiler is a program that generate PHP code or run the script. Another compiler allows to produce binary executable. Editor and reference manual included. Scriptol has been designed to be simple, safe and universal. It is a modern, object-oriented, procedural language with innovative features, for example it can use XML as data structure. Scriptol is compiled to PHP or binary. |
||||||||||||||
| 3 | Scriptol Compilers 6.2 |
linux | Programming->Compilers | Free |
View Detail
|
|||||||||
Scriptol is an object oriented programming language designed to deliver the programmer from hardware or software constraints and let him or her concentrate only on the problem to formulate as a program. Scriptol Compilers is universal, and allows building dynamic Web pages (with PHP as the backend), writing scripts, and building binary applications. It is compatible with Java and C++ libraries. Examples of use with PHP, Java, and GTK are included. How to install the Java extension for Php or C++ 1) Installing Java for Php Search for the java path, example: c:jdk1.4 Search for the php extensions path, example: c:phpextensions The extension directory must hold these files: php_java.dll php_java.jar Set these lines into php.ini (in the Windows directory) extension_dir = c:phpextensions extension=php_java.dll Search for the [java] section in php.ini - java.class.path must be assigned the path of all jar or class files including php_java.jar, separated by a semi-colon. (You can use a dot to designate the current path for yours jar or class file) - java.home must be assigned the path of Java. - java.library must be assigned the path of jvm.dll. - java.library.path must be assigned the path of php extensions, that hold php_java.dll and php_java.jar and the path of any Java class you want to use. - If these classes are inside jar files, the jar filenames are a part of the path. - If several paths are required, they are separated by semicolons and enclosed in double quotes. Example: [Java] java.class.path = "c:phpextensionsphp_java.jar;c:myclasses" java.home = "c:jdk1.4" java.library = "c:jdk1.4jrebinclientjvm.dll" java.library.path = "c:phpextensions;c:jdk1.4jrelib" 2) Installing Java for Scriptol C++ - The jvm.dll must be in the path. - The jvm.lib, jni.h, jni_md.h files must be in the directory of the source. - The JAVA_HOME variable must be assigned the path of the JDK (ex: c:jdl1.4). - See the README file if you encounter problems... |
||||||||||||||
| 4 | Scriptol to Php Compiler |
linux | Text Editing&Processing->Markup | Free |
View Detail
|
|||||||||
Scriptol to Php Compiler is a scriptol program that may be interpreted by the Php interpreter and it may be also compiled either to C++ or directly as an executable. The Php interpreter is required by solp (download it at www.php.net or get it on the Scriptol CD). Installation: It is better to install Scriptol at root of a disk, for example: /home/user/scriptolp Once the archive is extracted into the scriptolp directory, you have just to go to this directory from the console to run the compiler. To use the compiler at command line from any directory, you have to put the compilers into the path, in the usr directory for exemple, or any directory assigned to the path variable (see .bashrc or equivalent). You may also add the scriptol directory to list of paths. Before to use the compiler, you have to read the licence, in the doc directory: licence.html. Usage: Type the source of your program in a text editor and save it as mysource.sol or any other name with the sol extension. Then just type: ./solp mysource To know the compilers options, type solp without argument, at command line. Examples: Type from the main scriptol directory: ./solp demos/helloyou |
||||||||||||||
| 5 | Scriptol PHP Compiler 7.0 |
windows | Network Internet->Browsers | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 6 | Scriptol to binary Compiler |
linux | Programming->Compilers | Free |
View Detail
|
|||||||||
Scriptol to binary Compiler is a C++ native compiler. Installation: It is better to install Scriptol at root of a disk, for example: c:scriptolc Once the archive is extracted into the scriptolc directory, you have just to change to this directory to run the compiler. To use the compiler at command line from any directory, you have to put the compiler into the path variable. The setup script installs required file into sub-directories, or into the directory given as argument. Before to use the compiler, you have to read the licence, in the doc directory: licence.html. Usage: Just type: ./solc mysource Type "solc" only to list the options. If your program is a multi-file project, the source given as parameter must be the main source file, the compiler will know dependencies from "include" statements and will build what is needed. Exemples: Type from the main scriptol directory: ./solc -bre demosfibo Configuring: By editing the solc.ini file, you may change the second pass compiler (you may have to rebuild the libsol library for this compiler), change the options of the compiler or add header files to include. To add header files, just add "header=someheader.hpp" lines into the config file. A xxx.cfg file may be written for each project main source beeing xxx, and if present, it overloads the solc.ini file. |
||||||||||||||
| 7 | Scriptol to C++ or binary compiler |
script | C and C plus plus | Free Additional Info: Mozilla 1.1 |
View Detail
|
|||||||||
|
||||||||||||||
| 8 | Scriptol to C++ for Linux 5.5 |
windows | Software Development->C Tools | Free |
View Detail
|
|||||||||
Brothersoft Editor: Scriptol is a modern programming language, designed to be simple and easy to learn, allowing new users ready to program in some hours. The programming time is largely decreased. Scriptol is object-oriented, xml-oriented, extensible, universal, uses C++, PHP or Java APIs, and GTK for graphical user interface. It is universal, that means it is convenient for scripting, to build applications or to make dynamic web pages. Free scriptol interpreter and compilers are currently available for Windows and Unix. Features of Scriptol Scriptol is : objectively modern: it has been designed according to seven rules for simplicity, safety, and doesnt carry ancient obsolete syntax. object-oriented, even simple scalar as "int", or literal as "123", are objects and have methods. typed: the compiler can check for content and type of variables, that is not possible with usually untyped scripting languages. natural: types are not based on computers hardware but on humans concepts or mathematical sets: these are text, number, integer, real, etc... powerful and safe: new control structures has been introduced with scriptol. Examples: - composite if, that is both an if statement and a switch case with any kind of values. - while let, that protects from infinite loop. - for .. in array, or for .. in a..b, the simplest way to express ranges. simple: no symbols as -> or ::, just a dot in any case. Adding 1 to x is just written: x + 1, and not x += 1. No memory management required, executables have a garbage collector. C++ compatible: you have just to link C++ object files or library files, and use the functions they hold, no any extension required to write! For example, you have just to add the GTK import libraries in the configuration file of a scriptol source to use the GTK user interface... PHP compatible: you can program web pages in Scriptol, your code is converted to Php and all Php functions may be used. |
||||||||||||||
| 9 | Scriptol to C++ for Windows 6.2 |
windows | Software Development->C Tools | Free |
View Detail
|
|||||||||
By BS Editor: Scriptol is a modern programming language, designed to be simple and easy to learn, allowing new users ready to program in some hours. The programming time is largely decreased. Scriptol is object-oriented, xml-oriented, extensible, universal, uses C++, PHP or Java APIs, and GTK for graphical user interface. It is universal, that means it is convenient for scripting, to build applications or to make dynamic web pages. Free scriptol interpreter and compilers are currently available for Windows and Unix. Features of Scriptol Scriptol is : objectively modern: it has been designed according to seven rules for simplicity, safety, and doesnt carry ancient obsolete syntax. object-oriented, even simple scalar as "int", or literal as "123", are objects and have methods. typed: the compiler can check for content and type of variables, that is not possible with usually untyped scripting languages. natural: types are not based on computers hardware but on humans concepts or mathematical sets: these are text, number, integer, real, etc... powerful and safe: new control structures has been introduced with scriptol. Examples: - composite if, that is both an if statement and a switch case with any kind of values. - while let, that protects from infinite loop. - for .. in array, or for .. in a..b, the simplest way to express ranges. simple: no symbols as -> or ::, just a dot in any case. Adding 1 to x is just written: x + 1, and not x += 1. No memory management required, executables have a garbage collector. C++ compatible: you have just to link C++ object files or library files, and use the functions they hold, no any extension required to write! For example, you have just to add the GTK import libraries in the configuration file of a scriptol source to use the GTK user interface... PHP compatible: you can program web pages in Scriptol, your code is converted to Php and all Php functions may be used. |
||||||||||||||
| 10 | Scriptol to PHP for Linux 6.2 |
windows | Web Development->PHP | Free |
View Detail
|
|||||||||
Brothersoft Editor: Scriptol is a modern programming language, designed to be simple and easy to learn, allowing new users ready to program in some hours. The programming time is largely decreased. Scriptol is object-oriented, xml-oriented, extensible, universal, uses C++, PHP or Java APIs, and GTK for graphical user interface. It is universal, that means it is convenient for scripting, to build applications or to make dynamic web pages. Free scriptol interpreter and compilers are currently available for Windows and Unix. Features of Scriptol Scriptol is : objectively modern: it has been designed according to seven rules for simplicity, safety, and doesnt carry ancient obsolete syntax. object-oriented, even simple scalar as "int", or literal as "123", are objects and have methods. typed: the compiler can check for content and type of variables, that is not possible with usually untyped scripting languages. natural: types are not based on computers hardware but on humans concepts or mathematical sets: these are text, number, integer, real, etc... powerful and safe: new control structures has been introduced with scriptol. Examples: - composite if, that is both an if statement and a switch case with any kind of values. - while let, that protects from infinite loop. - for .. in array, or for .. in a..b, the simplest way to express ranges. simple: no symbols as -> or ::, just a dot in any case. Adding 1 to x is just written: x + 1, and not x += 1. No memory management required, executables have a garbage collector. C++ compatible: you have just to link C++ object files or library files, and use the functions they hold, no any extension required to write! For example, you have just to add the GTK import libraries in the configuration file of a scriptol source to use the GTK user interface... PHP compatible: you can program web pages in Scriptol, your code is converted to Php and all Php functions may be used. |
||||||||||||||
| 11 | Scriptol Buttons 1.0 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
| 12 | Scriptol Counter 1.0 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
| 13 | Scriptol Visitors 1.1 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
| 14 | Ouline for liunx 1.7 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
BSEditor: Webmasters tools perfom automatically the most tedious part of the work of webmasters for web page creating. Type just a command and see the program achieving the job! All programs are free and open source (sources in Scriptol, PHP, C++). Outline W ebmasters tools perfom automatically the most tedious part of the work of webmasters for web page creating. Type just a command and see the program achieving the job! All programs are free and open source (sources in Scriptol, Php, C++). This Scriptol program, from a simple text, produces a HTML manual and generates also a summary that links on each chapter... It is also able to automatically generate a full tutorial from a list of texts and create a table of content with links to chapters from titles. |
||||||||||||||
| 15 | Ouline 1.7 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
Brothersoft Editor Webmasters tools perfom automatically the most tedious part of the work of webmasters for web page creating. Type just a command and see the program achieving the job! All programs are free and open source (sources in Scriptol, PHP, C++). Outline W ebmasters tools perfom automatically the most tedious part of the work of webmasters for web page creating. Type just a command and see the program achieving the job! All programs are free and open source (sources in Scriptol, Php, C++). This Scriptol program, from a simple text, produces a HTML manual and generates also a summary that links on each chapter... It is also able to automatically generate a full tutorial from a list of texts and create a table of content with links to chapters from titles. |
||||||||||||||
| 16 | Find/Replace Text in File 1.4 |
windows | Web Development->PHP | Free |
View Detail
|
|||||||||
BrothersoftEditor, Script to search and replace a string in a file, or all files in the directory chosen according to a mask. The script is recursive and can perform search or replacement in all subdirectories. It is a command line program with a binary and PHP executables, and a source code in Scriptol or C++. |
||||||||||||||
| 17 | SpiderSEO 1.0 |
windows | Web Development->Web Design Tools | Free |
View Detail
|
|||||||||
SpiderSEO generates automatically meta tags from the content of web pages. Mainly keywords and description, optionally other ones. Report metas and links. Graphical user interface and scripts. PDF manual included. Here are some key features of "SpiderSEO": · Generates meta tags from content of the page. · Generates keywords from content of the page. · Optionally generate other meta tags. · Reports meta tags and links. · Windows and Linux command line tools (written in Scriptol). · Graphical user interface for Windows. GUI for Linux is planned. |
||||||||||||||
| 18 | PHP FTP Synchronizer 1.2 |
windows | Network Internet->FTP Server Tools | Free |
View Detail
|
|||||||||
Open source program, with a Scriptol code source and a PHP executable, to synchronize the contents of a website with a local source directory. A single command is sufficient to parse all files and upload the ones that have been modified or added. Files are compared by date or by content, or alternatively files modified within n days are sent. A backup directory may be used to increase the speed. Complete manual included in the archive, in HTML and Star Office format to produce any format including PDF and Words. This software also supports the following language version:English,French |
||||||||||||||
| 19 | Site Update 1.1 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
BrothersoftEditor, Site Update is another scriptl at Scriptol.com to help the webmaster, as it accomplishes tedious tasks to leave to webmasters a more intellectual job. It may be useful also for all programmers. It compensates the lack of include statement in HTML and in a general manner, it allows to propagate code from a file to all files in a project or a web site. Site Update can: - replace a part of text, taken from a page of your website, to all other pages. - put a header at top of your source files. The program works offline, on the local image of your site. |
||||||||||||||
| 20 | Formula 1 1.0 |
windows | Web Development->Misc Web Authoring Tools | Free |
View Detail
|
|||||||||
Brothersoft Editor: These scripts take data text files you have filled, and build three HTML pages from them. A Scriptol compiler and the PHP interpreter are required. Files required - qmodel.php, rmodel.php, cmodel.php displayed pages which you may edit if needed - qual.sol, race.sol, teams.sol programs to be compiled to php files by solp.exe - q2002.dat, r2002.dat data files you must fill with last race results. - make.bat batch file to build the whole thing under Windows. |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
