Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip

If you are looking for something that is not in the links below, try to do a search on this page. Sometimes people add a page under this one without putting a link to it. If you are in luck, the word you search is in the title of one of these pages... A better way might be to simply use the global wiki search...

Accounting

Apache HTTPD (Apache Web server)

Ajax - Javascript - Json

Applications server

Asset Maintenance

Barcodes

CAS

  • Setting Up CAS with OFBiz (PDF) (This document speaks about OFBiz release 5, this release will never exist but will certainly be 9.4 or hopefully at least 9.x (x<=12)...)

Certificate

CMS

CSS

DataBase

...

Development tips

Eclipse

Geographic Information Systems (GIS)

Google

Groovy

Licences

Miscellaneous

Netbeans

Payment

POS

Production Tips

Quick Start Guides

RMI

Reporting tools

Searches

Selenium

Soap

Arrays
Another approach
For those who are familiar with Spring, you may be interested by Apache CXF instead of AXIS2. You will find a quick comparaison between AXIS2 and CXF here

SSL

Translation

Windows

Workflow Engines

XSL:FO (FOP)

ZK (work in progress)

A tuto (screencast) for a ZK view handler

...

Patch on Windows

Creating patches

  • Using Eclipse => Subclipse (Create Patch, Apply Patch context menu options, the clipboard one is the easiet)
  • Using Toirtoise from Files Explorer (Create Patch, Apply Patch context menu options)
  • Making a diff with subversion on command line : svn di fileName > filename.patch

I let you find the tools (with google :Eclipse/Subclipse, Tortoise, Subversion client, patch.exe, todos.exe with google ;o), etc.

Applying patches

To patch on Windows you have to download patch.exe. But you may encouter EOL problems with patch.exe.
That's why I prefer to use Tortoise's "Apply Patch" option in a 1st step. Tortoise is the best SVN and CVS UI existing, either on Linux or Windows. Besides Tortoise comes from Tigris too.
Then if I get problems with Tortoise (or Eclipse's "Apply Patch" option wich is near Tortoise for patching but less supple for this option and far more ingeneral) I use the patch command. Something to understand is that Tortoise actually use "SVN merge" so in certains cases problems arise.
To avoid EOL problems with the patch command, I use a bat file patchdos.bat :

Code Block

todos %1

...


patch \-p0 < %1

where todos is and exe to download (search with Google). Of course you will have to deal with path. But at this stage I guess it's easy...
I just learned from https://sourceforge.net/project/shownotes.php?release_id=508633 that the "--binary" option may be used in that case, did no try yet...

...

Code Block
<!-- Begin of standard login procedure -->
<tr>
 <td>open</td>
 <td>/manufacturing/control/logout</td>
 <td></td>
</tr>
<tr>
 <td>type</td>
 <td>USERNAME</td>
 <td>admin</td>
</tr>
<tr>
 <td>type</td>
 <td>PASSWORD</td>
 <td>ofbiz</td>
</tr>
<tr>
 <td>select</td>
 <td>locale</td>
 <td>value=fr</td>
</tr>
<tr>
 <td>clickAndWait</td>
 <td>submitButton</td>
 <td></td>
</tr>
<tr>
 <td>assertElementNotPresent</td>
 <td>//div[@class='errorMessage']</td>
 <td></td>
</tr>
<!-- End of standard login procedure -->

Advices from Peter Goron

Anchor
NativeDatabaseTip
NativeDatabaseTip

...