[Harbour] SF.net SVN: harbour-project:[14181] trunk/harbour

2010-03-18 Thread vouchcac
Revision: 14181
  
http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14181view=rev
Author:   vouchcac
Date: 2010-03-18 07:03:54 + (Thu, 18 Mar 2010)

Log Message:
---
2010-03-17 23:50 UTC-0800 Pritpal Bedi (prit...@vouchcac.com)
  * contrib/hbxbp/xbptreeview.prg
! Added :tooltipText instance variable to manage tooltips.

  * contrib/hbide/hbide.prg
  * contrib/hbide/idedocks.prg
  * contrib/hbide/ideeditor.prg
  * contrib/hbide/idefindreplace.prg
  * contrib/hbide/ideprojmanager.prg
  * contrib/hbide/resources/docwriter.ui
  * contrib/hbide/resources/docwriter.uic

! Reworked Projects and Editors tree.
  Now the indentation is reduced, visual elements are added,
  long paths are shifted inside tooltips, nodes are sorted.
! Editors tree now displays the panel icon on which this source
  is hosted. A very handy and useful implementation.

  These tree-views will remain stationary for the rest of hbIDE 
  development cycle, i.e., there will bo no change whatsoever 
  on these components.

! Many other artifacts corrected while working with the production 
  projects myself. Probably now you may try, at least, for real-time
  use.

+ Setup a dedicated web-presence of hbIDE
http://hbide.vouch.info/

  Please remain in tough with these pages as contents will keep on 
  posted with every available spare time.  

Modified Paths:
--
trunk/harbour/ChangeLog
trunk/harbour/contrib/hbide/hbide.prg
trunk/harbour/contrib/hbide/idedocks.prg
trunk/harbour/contrib/hbide/ideeditor.prg
trunk/harbour/contrib/hbide/idefindreplace.prg
trunk/harbour/contrib/hbide/ideprojmanager.prg
trunk/harbour/contrib/hbide/resources/docwriter.ui
trunk/harbour/contrib/hbide/resources/docwriter.uic
trunk/harbour/contrib/hbxbp/xbptreeview.prg


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] SF.net SVN: harbour-project:[14179] trunk/harbour

2010-03-18 Thread Mindaugas Kavaliauskas

Hi,


vszak...@users.sourceforge.net wrote:

  - external/bzip2/bzip2.c
- Deleted accindentally included bzip2 tool.


Thank, You. Now I'm able to test bzip2 library.

PROC main()
LOCAL nResult
  ? Len:, HB_BZ2_UNCOMPRESSLEN(HB_BZ2_COMPRESS(), @nResult)
  ? nResult:, nResult
RETURN

prints:
Len:  0
nResult:  0

So I suggest change:
 HB_BZ2_UNCOMPRESSLEN( cCompressedData, [@nResult] )
  - nUnCompressedDataLen or 0 on error
to:
 HB_BZ2_UNCOMPRESSLEN( cCompressedData, [@nResult] )
  - nUnCompressedDataLen or -1 on error

Any objections?


Regards,
Mindaugas

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Same functions not found.

2010-03-18 Thread Itamar Lins

Hi! 
My project now not found this is functions:
DbCopyStruct()
dllcall()
curdrive()

Ps.Changelog 14175 2010-03-15 22:57:312 druzus

Best regards,
Itamar M. Lins Jr.

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] SF.net SVN: harbour-project:[14182] trunk/harbour

2010-03-18 Thread vszakats
Revision: 14182
  
http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14182view=rev
Author:   vszakats
Date: 2010-03-18 12:30:42 + (Thu, 18 Mar 2010)

Log Message:
---
2010-03-18 13:29 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
  * INSTALL
! Fixed Debian bzip2 package name.

  * external/bzip2/Makefile
  * contrib/hbbzip2/hbbzip2.hbc
* Changed local bzip2 lib name to match regular name used on *nix systems.

  * external/zlib/Makefile
* Formatting.

  * contrib/hbmzip/Makefile
! Minor fix.

Modified Paths:
--
trunk/harbour/ChangeLog
trunk/harbour/INSTALL
trunk/harbour/contrib/hbbzip2/hbbzip2.hbc
trunk/harbour/contrib/hbmzip/Makefile
trunk/harbour/external/bzip2/Makefile
trunk/harbour/external/zlib/Makefile


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] SF.net SVN: harbour-project:[14179] trunk/harbour

2010-03-18 Thread Przemysław Czerpak
On Thu, 18 Mar 2010, Mindaugas Kavaliauskas wrote:

Hi,

 PROC main()
 LOCAL nResult
   ? Len:, HB_BZ2_UNCOMPRESSLEN(HB_BZ2_COMPRESS(), @nResult)
   ? nResult:, nResult
 RETURN
 prints:
 Len:  0
 nResult:  0
 So I suggest change:
  HB_BZ2_UNCOMPRESSLEN( cCompressedData, [@nResult] )
   - nUnCompressedDataLen or 0 on error
 to:
  HB_BZ2_UNCOMPRESSLEN( cCompressedData, [@nResult] )
   - nUnCompressedDataLen or -1 on error
 Any objections?

Few notes:
1. HB_BZ2_COMPRESS() returns empty string and HB_BZ2_UNCOMPRES()
   accepts empty string without any errors and also return empty string.
   In the same way are working corresponding ZLIB functions:
   HB_ZCOMPRESS() and HB_ZUNCOMPRESS()
2. We probably have to add RTE when 1-st parameter is not string
3. HB_ZUNCOMPRESSLEN() should also be updated to return compatible results.

I'll commit such modifications soon.

best regards,
Przemek
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] SF.net SVN: harbour-project:[14184] trunk/harbour

2010-03-18 Thread druzus
Revision: 14184
  
http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14184view=rev
Author:   druzus
Date: 2010-03-18 15:13:05 + (Thu, 18 Mar 2010)

Log Message:
---
2010-03-18 16:12 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
  * harbour/src/rtl/hbzlib.c
  * harbour/contrib/hbbzip2/hbbzip2.c
! fixed typo (reverted return value) in recent modification

Modified Paths:
--
trunk/harbour/ChangeLog
trunk/harbour/contrib/hbbzip2/hbbzip2.c
trunk/harbour/src/rtl/hbzlib.c


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] SF.net SVN: harbour-project:[14185] trunk/harbour

2010-03-18 Thread vouchcac
Revision: 14185
  
http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14185view=rev
Author:   vouchcac
Date: 2010-03-18 22:05:47 + (Thu, 18 Mar 2010)

Log Message:
---
2010-03-18 15:02 UTC-0800 Pritpal Bedi (prit...@vouchcac.com)
  * contrib/hbide/hbide.ch
  * contrib/hbide/idesaveload.prg
  * contrib/hbide/idethemes.prg
+ Unified hbide.ini and idewindow.ini.
  Now hbIDE uses standards .ini format.

  Please delete your hbide.ini.

Modified Paths:
--
trunk/harbour/ChangeLog
trunk/harbour/contrib/hbide/hbide.ch
trunk/harbour/contrib/hbide/idesaveload.prg
trunk/harbour/contrib/hbide/idethemes.prg


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] hbIDE - Application Icon

2010-03-18 Thread Pritpal Bedi

Hi All,

What is the best way to place an icon for resulting
eexcutable ?

I know it for Windows, but do not have anu clue for *nixes.

For matter of hbIDE distribution I need it to be presented with an 
icon. is it ok to place .ico into the repository ?

If not, what methodology I should adopt to build exe with 
icon, _always_ ?

-
 enjoy hbIDEing...
Pritpal Bedi 
_a_student_of_software_analysis__design_
-- 
View this message in context: 
http://n2.nabble.com/hbIDE-Application-Icon-tp4760039p4760039.html
Sent from the harbour-devel mailing list archive at Nabble.com.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] SF.net SVN: harbour-project:[14186] trunk/harbour

2010-03-18 Thread vouchcac
Revision: 14186
  
http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14186view=rev
Author:   vouchcac
Date: 2010-03-19 04:10:35 + (Fri, 19 Mar 2010)

Log Message:
---
2010-03-18 20:49 UTC-0800 Pritpal Bedi (prit...@vouchcac.com)
  * contrib/hbide/hbide.hbp
  * contrib/hbide/hbide.prg
  * contrib/hbide/ideactions.prg
  * contrib/hbide/idedocks.prg
  * contrib/hbide/ideeditor.prg
  * contrib/hbide/ideobject.prg
  + contrib/hbide/ideskeletons.prg
+ Reworked and greatly enhanced snippets-skeletons management.
  
  How it works:
  =
  1. Creating of skelton is as before with same interface.

  2. In addition, the selected text in the current editor 
 can be saved as a skeleton via Save as Skeleton...
 option in right-click context menu. A Name will be 
 asked via a modal input edit dialog.

  3. A new Skeletons tree-view is implemented at the Left-hand 
 docking area which displays all skeletons by name. 

  4. Hovering cursor over the name node shows up the body of 
 skeleton as a tooltip, very handy.

  5. Double-click on the node in tree-view will insert the 
 skeleton text at the current cursor position.

  6. Alternatively, as before, menu can be activated via CTRL+K.

  7. Skeletons body now supports meta data as follows:
 ---
 DO WHILE .T. 
IF cVar == -PROMPT
   xVar := -DtoC( Date() )
ENDIF 
-CUR
EXIT
 ENDDO
 ---

 You can see there are 3 occurances of -* token.

 -PROMPT will execute an input dialog and the resultant 
 string will be inserted here.

 -DtoC( Date() ) will evaluate the expression, which in 
 this case, - 03/18/2010 - will be inserted. This means 
 any valid Harbour expression which returns a string 
 can be designated as meta-expression.

 -CUR will position the cursor at this place.

 This is what I thought it should behave.
 Please let me know it anything else can make it more productive.

Modified Paths:
--
trunk/harbour/ChangeLog
trunk/harbour/contrib/hbide/hbide.hbp
trunk/harbour/contrib/hbide/hbide.prg
trunk/harbour/contrib/hbide/ideactions.prg
trunk/harbour/contrib/hbide/idedocks.prg
trunk/harbour/contrib/hbide/ideeditor.prg
trunk/harbour/contrib/hbide/ideobject.prg

Added Paths:
---
trunk/harbour/contrib/hbide/ideskeletons.prg


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] SF.net SVN: harbour-project:[14187] trunk/harbour

2010-03-18 Thread vouchcac
Revision: 14187
  
http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14187view=rev
Author:   vouchcac
Date: 2010-03-19 04:17:03 + (Fri, 19 Mar 2010)

Log Message:
---
2010-03-18 21:15 UTC-0800 Pritpal Bedi (prit...@vouchcac.com)
  * contrib/hbide/hbide.hbp
! Deleted .rc entry.

Modified Paths:
--
trunk/harbour/ChangeLog
trunk/harbour/contrib/hbide/hbide.hbp


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour