AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Projekte DupeChecker - Duplikate im Source finden v1.3.5
Thema durchsuchen
Ansicht
Themen-Optionen

DupeChecker - Duplikate im Source finden v1.3.5

Ein Thema von Union · begonnen am 28. Mär 2006 · letzter Beitrag vom 4. Dez 2021
Antwort Antwort
Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.373 Beiträge
 
Delphi 12 Athens
 
#1

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 8. Okt 2014, 14:35
Wenn alles perfekt funktioniert, dann müsste man ja grundsätzlich erstmal nichts dran ändern.

Gibt es denn irgendwelche Probleme oder hast du irgendwelche Wünsche?
Ein Therapeut entspricht 1024 Gigapeut.
  Mit Zitat antworten Zitat
Benutzerbild von Bernhard Geyer
Bernhard Geyer

Registriert seit: 13. Aug 2002
17.222 Beiträge
 
Delphi 10.4 Sydney
 
#2

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 8. Okt 2014, 16:37
Perfekt ist ist noch nicht.
Beim Diff-Betrachten werden die Listen nicht 100% intelligent synchronisiert verschoben.


Und als ich es auf den Completten Source bei uns losgelassen habe schreibt er das er noch fast 2:00 Stunden benötigen würde
Windows Vista - Eine neue Erfahrung in Fehlern.
  Mit Zitat antworten Zitat
xcluster

Registriert seit: 8. Okt 2014
4 Beiträge
 
#3

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 9. Okt 2014, 07:51
Meine ideen:

1) Das programm sollte entspeichern der haupt fenster position (normal mit positionen; maximized [welche monitor])
2) Das programm sollte entspeichern die view ("Show Duplicate") fenster positionen (ich benutze immer als maximized)
3) Wenn ich doppel klicke ("Show Duplicates") auf ein liste item (on sheet "List"), das zeigt die "Show Duplicate" fenster, aber ich kann hier nicht editieren; das würde super!
4) Wenn ich scroll auf eine seite mit der mouse in the "Show Duplicate" fenster, die andere seite bewegt nicht
5) Ich brauche manchmal das einige datein sollte nicht prozessieren; zum beispiel: "*SDK*.pas" (mit wildchars)

Eine frage:
Was macht die "File list" checkbox auf der haupt fenster?

MfG:
xcluster
  Mit Zitat antworten Zitat
Benutzerbild von Union
Union

Registriert seit: 18. Mär 2004
Ort: Luxembourg
3.492 Beiträge
 
Delphi 7 Enterprise
 
#4

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 9. Okt 2014, 09:10
1) The Main window position should normally be saved and restored. This should work with multimonitor. See [Layout] section in the ini file. However, window state (e.g. wsMaximized) isn't stored.
2) Positions of popup windows arent saved or restored by purpose.
3) This is by purpose, source code should be edited from within the IDE.
4) You're right, synchronising works only when using the keyboard.
5) You could create an input file listing using dir /s/b *.pas > mylist.txt and delete the lines you don't want to be processed. Then, enter mylist.txt into the filename edit box and check the filelist checkbox.

Zitat von readme.xt:
Checkbox Filelist:
When checked, the file name entered in the Edit field will be used as input for source file names and directory names. The file list can contain both single source file names as well as directories.
Ibi fas ubi proxima merces
sudo /Developer/Library/uninstall-devtools --mode=all
  Mit Zitat antworten Zitat
xcluster

Registriert seit: 8. Okt 2014
4 Beiträge
 
#5

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 17. Okt 2014, 08:33
1) Position saved (Maximized would be fine), but last monitor is not saved.
2)
3) Maybe double click to jump to the position in IDE as PAL (Pascal Analyzer from Peganza) does?
4) ok
5) Ok, sorry, I've missed to read the readme.txt

Found a bug:

They're highlighted as same but they isn't:

1:
<code>
{$ENDREGION 'PTZ'}

{$REGION 'DeviceIO'}
// with LDeviceIO do
// begin
// LOnvifServiceType := ostMedia;
//
// LGetAudioOutputs := RCOnvifDeviceIO.GetAudioOutputs.Create;
// ExecuteAndSave(LGetAudioOutputs);
//
// LGetAudioSources := RCOnvifDeviceIO.GetAudioSources.Create;
// ExecuteAndSave(LGetAudioSources);
//
// // LGetRelayOutputOptions := RCOnvifDeviceIO.GetRelayOutputOptions.Create;
// // ExecuteAndSave(LGetRelayOutputOptions);
//
// LGetVideoOutputs := RCOnvifDeviceIO.GetVideoOutputs.Create;
// ExecuteAndSave(LGetVideoOutputs);
//
// LGetVideoSources := RCOnvifDeviceIO.GetVideoSources.Create;
// ExecuteAndSave(LGetVideoSources);
//
// LOnvifServiceType := ostDevice;
//
// LGetRelayOutputs := RCOnvifDeviceIO.GetRelayOutputs.Create;
// ExecuteAndSave(LGetRelayOutputs);
// end;
{$ENDREGION 'DeviceIO'}

{$REGION 'AnalyticsDevice'}
</code>

2:
<code>
{$ENDREGION 'PTZ'}

{$REGION 'DeviceIO'}
// LDeviceIO: record
// LGetAudioOutputs: RCOnvifDeviceIO.GetAudioOutputs;
// LGetAudioSources: RCOnvifDeviceIO.GetAudioSources;
//// LGetRelayOutputOptions: RCOnvifDeviceIO.GetRelayOutputOptions;
// LGetRelayOutputs: RCOnvifDeviceIO.GetRelayOutputs;
// LGetVideoOutputs: RCOnvifDeviceIO.GetVideoOutputs;
// LGetVideoSources: RCOnvifDeviceIO.GetVideoSources;
// end;
{$ENDREGION 'DeviceIO'}

{$REGION 'AnalyticsDevice'}
</code>

Screenshot attached.

Greetings:
xcluster
Miniaturansicht angehängter Grafiken
sourcecode-dupechecker-bug.jpg  
  Mit Zitat antworten Zitat
Benutzerbild von Union
Union

Registriert seit: 18. Mär 2004
Ort: Luxembourg
3.492 Beiträge
 
Delphi 7 Enterprise
 
#6

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 17. Okt 2014, 08:36
Commented lines are ignored
Ibi fas ubi proxima merces
sudo /Developer/Library/uninstall-devtools --mode=all
  Mit Zitat antworten Zitat
xcluster

Registriert seit: 8. Okt 2014
4 Beiträge
 
#7

AW: DupeChecker - Duplikate im Source finden v1.3.5

  Alt 18. Okt 2014, 11:21
Ah, thx!
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:35 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz