summaryrefslogtreecommitdiff
path: root/netsurf_corebuild.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'netsurf_corebuild.mdwn')
-rw-r--r--netsurf_corebuild.mdwn141
1 files changed, 72 insertions, 69 deletions
diff --git a/netsurf_corebuild.mdwn b/netsurf_corebuild.mdwn
index e405860..1635970 100644
--- a/netsurf_corebuild.mdwn
+++ b/netsurf_corebuild.mdwn
@@ -16,78 +16,81 @@ The source layout was in need of improvement to achive use of core buildsystem.
Most of the layout change has been done and current layout in May 2018 is:
-`├── content
-`│   ├── fetchers
-`│   └── handlers
-`│   ├── css
-`│   ├── html
-`│   ├── image
-`│   ├── javascript
-`│   └── text
-`├── desktop
-`├── docs
-`├── frontends
-`│   ├── amiga
-`│   ├── atari
-`│   ├── beos
-`│   ├── framebuffer
-`│   ├── gtk
-`│   ├── monkey
-`│   ├── riscos
-`│   └── windows
-`├── include
-`│   └── netsurf
-`├── resources
-`│   ├── de
-`│   ├── en
-`│   ├── fr
-`│   ├── icons
-`│   ├── it
-`│   ├── ja
-`│   └── nl
-`├── test
-`│   ├── data
-`│   └── js
-`└── utils
-` ├── http
-` └── nsurl
-
+```
+├── content
+│   ├── fetchers
+│   └── handlers
+│   ├── css
+│   ├── html
+│   ├── image
+│   ├── javascript
+│   └── text
+├── desktop
+├── docs
+├── frontends
+│   ├── amiga
+│   ├── atari
+│   ├── beos
+│   ├── framebuffer
+│   ├── gtk
+│   ├── monkey
+│   ├── riscos
+│   └── windows
+├── include
+│   └── netsurf
+├── resources
+│   ├── de
+│   ├── en
+│   ├── fr
+│   ├── icons
+│   ├── it
+│   ├── ja
+│   └── nl
+├── test
+│   ├── data
+│   └── js
+└── utils
+ ├── http
+ └── nsurl
+```
vincents original target:
-` + netsurf`
-`   + resources`
-`   + url`
-`   + utils`
-`   + test`
-`   + docs`
-`   + include`
-`   | + netsurf`
-`   + content`
-`   | + cache`
-`   | + fetchers`
-`   | + handlers`
-`   |   + css`
-`   |   + image`
-`   |   + html`
-`   |   + javascript`
-`   |   + text`
-`   + ui`
-`   | + browser`
-`   | + widgets`
-`   |   + textarea`
-`   |   + treeview`
-`   + frontends`
-`     + amiga`
-`     + atari`
-`     + beos`
-`     + cocoa`
-`     + framebuffer`
-`     + gtk`
-`     + monkey`
-`     + riscos`
-`     + windows`
-`   `
+```
+ + netsurf
+   + resources
+   + url
+   + utils
+   + test
+   + docs
+   + include
+   | + netsurf
+   + content
+   | + cache
+   | + fetchers
+   | + handlers
+   |   + css
+   |   + image
+   |   + html
+   |   + javascript
+   |   + text
+   + ui
+   | + browser
+   | + widgets
+   |   + textarea
+   |   + treeview
+   + frontends
+     + amiga
+     + atari
+     + beos
+     + cocoa
+     + framebuffer
+     + gtk
+     + monkey
+     + riscos
+     + windows
+   
+```
tlsa's proposal: