├── .gitignore ├── .tx └── config ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── appicons ├── 108x108 │ └── apps │ │ └── harbour-workinghourstracker.png ├── 128x128 │ └── apps │ │ └── harbour-workinghourstracker.png ├── 256x256 │ └── apps │ │ └── harbour-workinghourstracker.png └── 86x86 │ └── apps │ └── harbour-workinghourstracker.png ├── harbour-workinghourstracker.desktop ├── harbour-workinghourstracker.pro ├── qml ├── CHANGELOG.md ├── cover │ ├── CoverPage.qml │ └── cover.svg ├── harbour-workinghourstracker.qml ├── helpers.js ├── md.js ├── moment.min.js ├── pages │ ├── About.qml │ ├── Add.qml │ ├── AddProject.qml │ ├── All.qml │ ├── Banner.qml │ ├── CategorySummary.qml │ ├── FirstPage.qml │ ├── HowTo.qml │ ├── LogViewer.qml │ ├── MyTimePicker.qml │ ├── ProjectPage.qml │ ├── Projects.qml │ ├── Settings.qml │ └── WhatsNewPage.qml └── worker.js ├── rpm ├── harbour-workinghourstracker.changes ├── harbour-workinghourstracker.spec └── harbour-workinghourstracker.yaml ├── src ├── BreakTimer.cpp ├── BreakTimer.h ├── Database.cpp ├── Database.h ├── Exporter.cpp ├── Exporter.h ├── Launcher.cpp ├── Launcher.h ├── Logger.cpp ├── Logger.h ├── SettingsClass.cpp ├── SettingsClass.h ├── WorkTimer.cpp ├── WorkTimer.h └── harbour-workinghourstracker.cpp ├── translations ├── harbour-workinghourstracker-ca.ts ├── harbour-workinghourstracker-da.ts ├── harbour-workinghourstracker-de.ts ├── harbour-workinghourstracker-de_DE.ts ├── harbour-workinghourstracker-el.ts ├── harbour-workinghourstracker-es.ts ├── harbour-workinghourstracker-et.ts ├── harbour-workinghourstracker-fi.ts ├── harbour-workinghourstracker-fr.ts ├── harbour-workinghourstracker-hu.ts ├── harbour-workinghourstracker-hu_HU.ts ├── harbour-workinghourstracker-it_IT.ts ├── harbour-workinghourstracker-nb_NO.ts ├── harbour-workinghourstracker-nl_BE.ts ├── harbour-workinghourstracker-nl_NL.ts ├── harbour-workinghourstracker-no.ts ├── harbour-workinghourstracker-pl_PL.ts ├── harbour-workinghourstracker-pt_BR.ts ├── harbour-workinghourstracker-pt_PT.ts ├── harbour-workinghourstracker-ru.ts ├── harbour-workinghourstracker-sk_SK.ts ├── harbour-workinghourstracker-sv.ts ├── harbour-workinghourstracker-tr_TR.ts ├── harbour-workinghourstracker-zh_CN.ts ├── harbour-workinghourstracker.ts ├── store-ca.ts ├── store-da.ts ├── store-de.ts ├── store-de_DE.ts ├── store-el.ts ├── store-es.ts ├── store-et.ts ├── store-fi.ts ├── store-fr.ts ├── store-hu.ts ├── store-hu_HU.ts ├── store-it_IT.ts ├── store-nl_BE.ts ├── store-nl_NL.ts ├── store-no.ts ├── store-pl_PL.ts ├── store-pt_BR.ts ├── store-pt_PT.ts ├── store-ru.ts ├── store-sk_SK.ts ├── store-sv.ts ├── store-tr_TR.ts ├── store-zh_CN.ts └── store.ts └── wht.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | qml/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/README.md -------------------------------------------------------------------------------- /appicons/108x108/apps/harbour-workinghourstracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/appicons/108x108/apps/harbour-workinghourstracker.png -------------------------------------------------------------------------------- /appicons/128x128/apps/harbour-workinghourstracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/appicons/128x128/apps/harbour-workinghourstracker.png -------------------------------------------------------------------------------- /appicons/256x256/apps/harbour-workinghourstracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/appicons/256x256/apps/harbour-workinghourstracker.png -------------------------------------------------------------------------------- /appicons/86x86/apps/harbour-workinghourstracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/appicons/86x86/apps/harbour-workinghourstracker.png -------------------------------------------------------------------------------- /harbour-workinghourstracker.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/harbour-workinghourstracker.desktop -------------------------------------------------------------------------------- /harbour-workinghourstracker.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/harbour-workinghourstracker.pro -------------------------------------------------------------------------------- /qml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/CHANGELOG.md -------------------------------------------------------------------------------- /qml/cover/CoverPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/cover/CoverPage.qml -------------------------------------------------------------------------------- /qml/cover/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/cover/cover.svg -------------------------------------------------------------------------------- /qml/harbour-workinghourstracker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/harbour-workinghourstracker.qml -------------------------------------------------------------------------------- /qml/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/helpers.js -------------------------------------------------------------------------------- /qml/md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/md.js -------------------------------------------------------------------------------- /qml/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/moment.min.js -------------------------------------------------------------------------------- /qml/pages/About.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/About.qml -------------------------------------------------------------------------------- /qml/pages/Add.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/Add.qml -------------------------------------------------------------------------------- /qml/pages/AddProject.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/AddProject.qml -------------------------------------------------------------------------------- /qml/pages/All.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/All.qml -------------------------------------------------------------------------------- /qml/pages/Banner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/Banner.qml -------------------------------------------------------------------------------- /qml/pages/CategorySummary.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/CategorySummary.qml -------------------------------------------------------------------------------- /qml/pages/FirstPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/FirstPage.qml -------------------------------------------------------------------------------- /qml/pages/HowTo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/HowTo.qml -------------------------------------------------------------------------------- /qml/pages/LogViewer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/LogViewer.qml -------------------------------------------------------------------------------- /qml/pages/MyTimePicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/MyTimePicker.qml -------------------------------------------------------------------------------- /qml/pages/ProjectPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/ProjectPage.qml -------------------------------------------------------------------------------- /qml/pages/Projects.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/Projects.qml -------------------------------------------------------------------------------- /qml/pages/Settings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/Settings.qml -------------------------------------------------------------------------------- /qml/pages/WhatsNewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/pages/WhatsNewPage.qml -------------------------------------------------------------------------------- /qml/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/qml/worker.js -------------------------------------------------------------------------------- /rpm/harbour-workinghourstracker.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/rpm/harbour-workinghourstracker.changes -------------------------------------------------------------------------------- /rpm/harbour-workinghourstracker.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/rpm/harbour-workinghourstracker.spec -------------------------------------------------------------------------------- /rpm/harbour-workinghourstracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/rpm/harbour-workinghourstracker.yaml -------------------------------------------------------------------------------- /src/BreakTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/BreakTimer.cpp -------------------------------------------------------------------------------- /src/BreakTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/BreakTimer.h -------------------------------------------------------------------------------- /src/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Database.cpp -------------------------------------------------------------------------------- /src/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Database.h -------------------------------------------------------------------------------- /src/Exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Exporter.cpp -------------------------------------------------------------------------------- /src/Exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Exporter.h -------------------------------------------------------------------------------- /src/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Launcher.cpp -------------------------------------------------------------------------------- /src/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Launcher.h -------------------------------------------------------------------------------- /src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Logger.cpp -------------------------------------------------------------------------------- /src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/Logger.h -------------------------------------------------------------------------------- /src/SettingsClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/SettingsClass.cpp -------------------------------------------------------------------------------- /src/SettingsClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/SettingsClass.h -------------------------------------------------------------------------------- /src/WorkTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/WorkTimer.cpp -------------------------------------------------------------------------------- /src/WorkTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/WorkTimer.h -------------------------------------------------------------------------------- /src/harbour-workinghourstracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/src/harbour-workinghourstracker.cpp -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-ca.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-da.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-de.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-de_DE.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-el.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-es.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-et.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-fi.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-fr.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-hu.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-hu_HU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-hu_HU.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-it_IT.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-nb_NO.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-nl_BE.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-nl_NL.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-no.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-no.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-pl_PL.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-pt_BR.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-pt_PT.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-ru.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-sk_SK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-sk_SK.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-sv.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-tr_TR.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker-zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker-zh_CN.ts -------------------------------------------------------------------------------- /translations/harbour-workinghourstracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/harbour-workinghourstracker.ts -------------------------------------------------------------------------------- /translations/store-ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-ca.ts -------------------------------------------------------------------------------- /translations/store-da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-da.ts -------------------------------------------------------------------------------- /translations/store-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-de.ts -------------------------------------------------------------------------------- /translations/store-de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-de_DE.ts -------------------------------------------------------------------------------- /translations/store-el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-el.ts -------------------------------------------------------------------------------- /translations/store-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-es.ts -------------------------------------------------------------------------------- /translations/store-et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-et.ts -------------------------------------------------------------------------------- /translations/store-fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-fi.ts -------------------------------------------------------------------------------- /translations/store-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-fr.ts -------------------------------------------------------------------------------- /translations/store-hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-hu.ts -------------------------------------------------------------------------------- /translations/store-hu_HU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-hu_HU.ts -------------------------------------------------------------------------------- /translations/store-it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-it_IT.ts -------------------------------------------------------------------------------- /translations/store-nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-nl_BE.ts -------------------------------------------------------------------------------- /translations/store-nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-nl_NL.ts -------------------------------------------------------------------------------- /translations/store-no.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-no.ts -------------------------------------------------------------------------------- /translations/store-pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-pl_PL.ts -------------------------------------------------------------------------------- /translations/store-pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-pt_BR.ts -------------------------------------------------------------------------------- /translations/store-pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-pt_PT.ts -------------------------------------------------------------------------------- /translations/store-ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-ru.ts -------------------------------------------------------------------------------- /translations/store-sk_SK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-sk_SK.ts -------------------------------------------------------------------------------- /translations/store-sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-sv.ts -------------------------------------------------------------------------------- /translations/store-tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-tr_TR.ts -------------------------------------------------------------------------------- /translations/store-zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store-zh_CN.ts -------------------------------------------------------------------------------- /translations/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/translations/store.ts -------------------------------------------------------------------------------- /wht.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olpeh/wht/HEAD/wht.gif --------------------------------------------------------------------------------