Fossil

Timeline
Login

Timeline

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

21 check-ins by user renez

2012-04-30
09:33
When sided by side make the text area small so it will always fit in the column. After page loaded enlarge the text area with Javascript. But leave a little room (40px) as a margin between the two columns. This insurers that side by side always succeeds. Closed-Leaf check-in: 396eceb9 user: renez tags: side-by-side-edit
2012-04-29
13:07
Put wrap="virtual" back in textarea Increase the height of the textarea to the height of the preview div. check-in: ead316f3 user: renez tags: side-by-side-edit
11:05
Use in cgi strncmp to circumvent Firefox adding ; charset: UTF-8; changed cols to 60 especially under windows it is to big and the result is not side-by-side check-in: a7a331fa user: renez tags: side-by-side-edit
05:12
Put back the rows='%d(n)". Although an other option is, after the page has loaded, to change the offsetHeight of the text area to the height of the previewdiv. check-in: 55e7e245 user: renez tags: side-by-side-edit
05:05
Enable side by side editing and preview. While automatic updating of the preview 'pane'. Tested with Chrome and Firefox under Linux. Only Chrome works. check-in: 20362c85 user: renez tags: side-by-side-edit
04:54
Create new branch named "side-by-side-edit" check-in: 68a8a7e9 user: renez tags: side-by-side-edit
2012-03-28
21:25
added advapi32 to libs of dmc. Needed for windows service check-in: c0ad5f6b user: renez tags: trunk
2010-10-01
18:02
Allow fossil branch new --date-override 'YYYY-MM-DD HH:MM:SS' --user-override user thebranch checkin To aid in importing historic data from other scm's check-in: 2cc6fd91 user: renez tags: trunk
17:44
Allow fossil tag add --date-override 'YYYY-MM-DD HH:MM:SS' --user-override user thetag checkin To aid in importing historic data from other scm's check-in: 5c59d7e9 user: renez tags: trunk
15:39
added thead, tfoot, tbody, col, colgroup and span to allowed html. So that pages generated by docbook and elyxer are accepted check-in: 172dccb6 user: renez tags: trunk
2010-09-12
15:23
(more type's) solves ticket [5e9f1b1cd8] check-in: 08aa440a user: renez tags: trunk
15:18
(delete 1 character{*} to much in dmc) solves ticket [5e9f1b1cd8] check-in: 2862ed59 user: renez tags: trunk
15:12
solves ticket [5e9f1b1cd8] check-in: 56fedab3 user: renez tags: trunk
2010-09-06
20:31
Solves ticket [64d9461fa4b399b15827876bcf6b8ccc95720d16] check-in: 370d5be3 user: renez tags: trunk
2010-08-31
15:51
make compilation depend on _WIN32 being defined by including allways config.h Closed-Leaf check-in: c0a530f4 user: renez tags: windowscompilers
2010-08-29
05:32
Changed mscv flags to -MT because that is what openssl is using. Removed the -Oy- for the same reason check-in: 30b8a41d user: renez tags: windowscompilers
2010-08-28
20:22
Added ssl support to msc msc doesn't like declaring vars in the middle of a block! added the extra needed libs in a commented LIBS line check-in: 29c728f4 user: renez tags: windowscompilers
10:54
The generated makefiles expect dat you do mkdir build cd build nmake -f ..\win\Makefile.msc This will put all the files in build. So no polution of the root of the source tree and you can build for the different compilers check-in: 99e0a29e user: renez tags: windowscompilers
09:20
Added the msvc sdk compiler check-in: c00f79d0 user: renez tags: windowscompilers
06:59
This is the first check-in on the windowscompilers branch and it adds the Digital Mars C compiler
The user should have dmc installed in c:\DM with zlib in c:\DM\extra\lib and c:\DM\extra\include.
typing c:\DM\bin\make -f win\Makefile.dmc builds fossil.exe in dmcobj
The following files were edited or added:

Checks if one of the windows compilers is used. If so we define _WIN32. Defining _WIN32 is normally done by
#include <windows.h>
However most of the time we don't use windows.h.

Adding an other windows compiler is done by adding
"|| defined(__COMPILER_IDENTIFIER__)"
and maybe some special things in the files below. Like

     

These have all __MINGW32__ replaced by _WIN32. And in some places special processing for either MINGW32 or DMC

In popen2 the _open_osfHandle call first parameter is cast to a long. DMC refused to compile without the cast.

DMC complained that it didn't knew of time_t in rss.h. time.h came after rss.h. Switching the two solved it!

added tcl code to generate Makefile.dmc. tclsh src/makemake.tcl dmc prints to stdout the makefile. As a convienience to the end-user I added the win/Makefile.dm...

check-in: f66f414f user: renez tags: windowscompilers
2010-08-27
01:24
Create new branch named "windowscompilers" check-in: 3e3304ac user: renez tags: windowscompilers