3795aaab5c 
								
							
								 
							
						 
						
							
							
								
								v test-fmt: reformat some skipped files, comment on the remaining ones  
							
							
							
						 
						
							2020-10-15 00:39:09 +03:00  
				
					
						
							
							
								 
						
							
							
								1505f3e22c 
								
							
								 
							
						 
						
							
							
								
								vweb: fix an example  
							
							
							
						 
						
							2020-07-05 16:52:20 +02:00  
				
					
						
							
							
								 
						
							
							
								02b846aa72 
								
							
								 
							
						 
						
							
							
								
								vweb: fix json() and text() results  
							
							
							
						 
						
							2020-06-27 13:56:15 +02:00  
				
					
						
							
							
								 
						
							
							
								1d8d19c977 
								
							
								 
							
						 
						
							
							
								
								vweb: return $vweb.html()  
							
							
							
						 
						
							2020-06-20 03:12:38 +02:00  
				
					
						
							
							
								 
						
							
							
								b904d7d1ba 
								
							
								 
							
						 
						
							
							
								
								vweb: debug prints behind $if debug  
							
							
							
						 
						
							2020-06-10 11:50:06 +02:00  
				
					
						
							
							
								 
						
							
							
								11b7b97311 
								
									
								
							
								 
							
						 
						
							
							
								
								parser: fail when assigning to _ with :=  
							
							
							
						 
						
							2020-06-08 00:47:04 +02:00  
				
					
						
							
							
								 
						
							
							
								30ade1d6ea 
								
							
								 
							
						 
						
							
							
								
								tests: test more vweb template features  
							
							
							
						 
						
							2020-06-07 19:06:07 +02:00  
				
					
						
							
							
								 
						
							
							
								70c18fc7b2 
								
									
								
							
								 
							
						 
						
							
							
								
								vweb: tmpl access to action method vars  
							
							
							
						 
						
							2020-06-07 21:26:47 +10:00  
				
					
						
							
							
								 
						
							
							
								4d5ac1e16d 
								
							
								 
							
						 
						
							
							
								
								vweb: $html  
							
							
							
						 
						
							2020-06-06 21:36:34 +02:00  
				
					
						
							
							
								 
						
							
							
								7815c5b108 
								
							
								 
							
						 
						
							
							
								
								cgen: $action (ComptimeCall); vweb: hello world works!  
							
							
							
						 
						
							2020-06-06 10:05:26 +02:00  
				
					
						
							
							
								 
						
							
							
								11908410f3 
								
							
								 
							
						 
						
							
							
								
								vweb: make compile  
							
							
							
						 
						
							2020-06-05 21:04:18 +02:00  
				
					
						
							
							
								 
						
							
							
								81b44dc2c9 
								
							
								 
							
						 
						
							
							
								
								generics: generic call inside generic call; checker: check mut args at call  
							
							
							
						 
						
							2020-05-29 04:30:00 +02:00  
				
					
						
							
							
								 
						
							
							
								7c9279c447 
								
							
								 
							
						 
						
							
							
								
								vfmt: make work with comptime  
							
							
							
						 
						
							2020-05-27 03:33:40 +02:00  
				
					
						
							
							
								 
						
							
							
								7f4cf08516 
								
									
								
							
								 
							
						 
						
							
							
								
								parser: check `(mut f Foo)` syntax  
							
							
							
						 
						
							2020-05-17 13:51:18 +02:00  
				
					
						
							
							
								 
						
							
							
								a277f7d6ab 
								
							
								 
							
						 
						
							
							
								
								cgen: string[i]; pointers  
							
							
							
						 
						
							2020-03-06 20:23:01 +01:00  
				
					
						
							
							
								 
						
							
							
								1db07f52d1 
								
									
								
							
								 
							
						 
						
							
							
								
								Improve vweb example to output the cookie  
							
							
							
						 
						
							2020-02-05 10:53:16 +01:00  
				
					
						
							
							
								 
						
							
							
								4c7df98ac9 
								
							
								 
							
						 
						
							
							
								
								make private struct warning an error  
							
							
							
						 
						
							2020-01-12 19:59:57 +01:00  
				
					
						
							
							
								 
						
							
							
								61bfecfa09 
								
							
								 
							
						 
						
							
							
								
								vweb: minor fixes  
							
							
							
						 
						
							2019-12-21 05:19:26 +03:00  
				
					
						
							
							
								 
						
							
							
								aa0ad9d922 
								
							
								 
							
						 
						
							
							
								
								fix vweb example  
							
							
							
						 
						
							2019-12-19 03:38:39 +03:00  
				
					
						
							
							
								 
						
							
							
								13769f440f 
								
							
								 
							
						 
						
							
							
								
								vweb: continue after bad http client connection; performance fixes  
							
							... 
							
							
							
							* Enable compiling vweb with -prod (by supressing 'declared and not used' warning about 'reset') .
* Fix http responses (now wrk is happy and shows no errors) by adding a Content-Length header.
* Fix -g compilation for urllib.v .
* vweb: println action= only in debug mode.
* vweb: max request headers counting fix.
* Make vweb.html get a 'ctx mut Context' param, just like the other methods.
* vweb: simplify add_header.
* Use a string builder for the most common html case so that the response http text can be send in one go.
* vweb: reduce _STR/string interpolation usage in the most common html response case.
* vweb: refactor common http response formatting into Context.send_response_to_client/2 method. 
							
						 
						
							2019-12-11 17:32:54 +03:00  
				
					
						
							
							
								 
						
							
							
								51051cdf92 
								
							
								 
							
						 
						
							
							
								
								vweb: enable @ logic in the  header + fix the example  
							
							
							
						 
						
							2019-12-09 23:34:38 +03:00  
				
					
						
							
							
								 
						
							
							
								329485d4b6 
								
							
								 
							
						 
						
							
							
								
								vweb: fix headers and cookies  
							
							
							
						 
						
							2019-12-07 15:04:05 +03:00  
				
					
						
							
							
								 
						
							
							
								cb8a19efaf 
								
							
								 
							
						 
						
							
							
								
								vweb: bring back html() test  
							
							
							
						 
						
							2019-11-26 09:34:09 +03:00  
				
					
						
							
							
								 
						
							
							
								0fb0c43c0a 
								
							
								 
							
						 
						
							
							
								
								pg: minor fixes  
							
							
							
						 
						
							2019-11-23 19:48:00 +03:00