modharbour Patcher

mod_harbour is an Apache module that allows to run PRGs directly on the web !!!
Post Reply
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

modharbour Patcher

Post by Otto »

ODHarbour Patcher

The MODHarbour Patcher runs as an *.exe on the server in c:\xampp\htdocs\

It allows you to split code into several pieces/prgs to take out complexity.
This is especially for beginners and newbies really usefull and helps to overcome sticking points at the entry.

Best regards
Otto

Image
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
Iris Gesser
Posts: 32
Joined: Fri Apr 22, 2016 10:19 pm

Re: modharbour Patcher

Post by Iris Gesser »

Great job! Thank you for the video!
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: modharbour Patcher

Post by Antonio Linares »

Dear Otto,

very creative!

You are always discovering new possibilities
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: modharbour Patcher

Post by Otto »

Hello,
now it is possible to use mod harbour include files also inside an include file.
mod harbour patcher supports:
|- for comments
-> link to include file
&- start line
-& end of line



Best regards,
Otto

sample

Code: Select all

 &-
    |- row wird in tablegebuchtezimmer angehängt
    
    $(".data-gebuchtTbl tbody").append( "
    <tr data-menge='" + MengeAuswahl  +"' data-beschreibung='"+cBeschreibung+"' data-preis='"+preis+"' data-summe='"+summe+"' data-id='"+id+"'>
        <td  style='visibility:hidden;'>" + id + "</td>
        |- alle 3 Werte sind in einer Spalte
        <td>"+cmenge+"</td><td><b>"+cZiBezeichnung +"</b><br> "+ cBeschreibung+"</td>
        
        <td>"+email+"</td>
        <td><button class='btn btn-info btn-xs btn-deletebooking'>Buchung entfernen</button></td>
    </tr>");
    
    -&
is automatically patched to this.

Code: Select all

$(".data-gebuchtTbl tbody").append( "<tr data-menge='" + MengeAuswahl  +"' data-beschreibung='"+cBeschreibung+"' data-preis='"+preis+"' data-summe='"+summe+"' data-id='"+id+"'><td  style='visibility:hidden;'>" + id + "</td><td>"+cmenge+"</td><td><b>"+cZiBezeichnung +"</b><br> "+ cBeschreibung+"</td><td>"+email+"</td><td><button class='btn btn-info btn-xs btn-deletebooking'>Buchung entfernen</button></td></tr>");
Image
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
Post Reply