Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.javascript > #31141
| Newsgroups | comp.lang.javascript |
|---|---|
| Subject | Re: flow charting or organizing tool |
| From | "Evertjan." <exxjxw.hannivoort@inter.nl.net> |
| References | <np8pod$859$1@dont-email.me> <XnsA66A61820BF22eejj99@194.109.6.166> <npfg1f$e9s$1@dont-email.me> |
| Date | 2016-08-22 21:00 +0200 |
| Message-ID | <XnsA66CD5BF68644eejj99@194.109.6.166> (permalink) |
wmgill <webworker1950@gmail.com> wrote on 22 Aug 2016 in comp.lang.javascript: > Your suggestions are fine, and I already employ many of these techniques > (modular code, code reuse, etc). However what I'm looking for is a tool > to aid me in the macro view of things. Don't know about commercial packages. ==================== That's why I advised to have the executing page to be just a sum of the modules, at least during development. In ASP, also if the content only has html cum css and clientside js: === main.asp ============ <% ' this module inputs a.b.c %> <% ' this module does ... %> <!-- #include virtual ="/detail/module1.asp"--> <% ' this module returns f %> <% ' this module has header html %> <!-- #include virtual ="/detail/module2.asp"--> <% ' this module has basic js datetime functions %> <!-- #include virtual ="/detail/module3.asp"--> =================== Then you are able to work on [=edit] each module seperately. The saved result will both be available to main.asp, and where necessary to a skeleton testing asp. -- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress)
Back to comp.lang.javascript | Previous | Next — Previous in thread | Find similar | Unroll thread
flow charting or organizing tool wmgill <webworker1950@gmail.com> - 2016-08-20 01:27 -0400
Re: flow charting or organizing tool "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-08-20 09:35 +0200
Re: flow charting or organizing tool wmgill <webworker1950@gmail.com> - 2016-08-22 14:24 -0400
Re: flow charting or organizing tool "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-08-22 21:00 +0200
csiph-web