forked from cadence/breezewiki
		
	Fix (& x) sequences truncating the page
This commit is contained in:
		
							parent
							
								
									6fef9281c3
								
							
						
					
					
						commit
						a9754463b6
					
				
					 2 changed files with 13 additions and 6 deletions
				
			
		| 
						 | 
					@ -60,7 +60,9 @@
 | 
				
			||||||
                   (figcaption "Test figure!"))
 | 
					                   (figcaption "Test figure!"))
 | 
				
			||||||
           (iframe (@ (src "https://example.com/iframe-src")))
 | 
					           (iframe (@ (src "https://example.com/iframe-src")))
 | 
				
			||||||
           (div (@ (class "reviews"))
 | 
					           (div (@ (class "reviews"))
 | 
				
			||||||
                   (header "GameSpot Expert Reviews"))))))
 | 
					                (header "GameSpot Expert Reviews"))
 | 
				
			||||||
 | 
					           (div (@ (data-test-ampersand) (class "mw-collapsible-content"))
 | 
				
			||||||
 | 
					                (& ndash))))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define (updater wikiname #:strict-proxy? [strict-proxy? #f])
 | 
					(define (updater wikiname #:strict-proxy? [strict-proxy? #f])
 | 
				
			||||||
  ;; precompute wikiurl regex for efficency
 | 
					  ;; precompute wikiurl regex for efficency
 | 
				
			||||||
| 
						 | 
					@ -159,7 +161,7 @@
 | 
				
			||||||
       (u
 | 
					       (u
 | 
				
			||||||
        (λ (v) (has-class? "mw-collapsible-content" attributes))
 | 
					        (λ (v) (has-class? "mw-collapsible-content" attributes))
 | 
				
			||||||
        (λ (v) (for/list ([element v])
 | 
					        (λ (v) (for/list ([element v])
 | 
				
			||||||
                 (u (λ (element) (pair? element))
 | 
					                 (u (λ (element) (element-is-element? element))
 | 
				
			||||||
                    (λ (element)
 | 
					                    (λ (element)
 | 
				
			||||||
                      `(,(car element)
 | 
					                      `(,(car element)
 | 
				
			||||||
                        (@ ,@(attribute-maybe-update 'style (λ (a) (regexp-replace #rx"display: *none" a "display:inline")) (bits->attributes element)))
 | 
					                        (@ ,@(attribute-maybe-update 'style (λ (a) (regexp-replace #rx"display: *none" a "display:inline")) (bits->attributes element)))
 | 
				
			||||||
| 
						 | 
					@ -304,6 +306,10 @@
 | 
				
			||||||
  (check-equal? ((query-selector (λ (t a c) (eq? t 'noscript)) transformed)) #f)
 | 
					  (check-equal? ((query-selector (λ (t a c) (eq? t 'noscript)) transformed)) #f)
 | 
				
			||||||
  ; check that gamespot reviews/ads are removed
 | 
					  ; check that gamespot reviews/ads are removed
 | 
				
			||||||
  (check-equal? ((query-selector (λ (t a c) (has-class? "reviews" a)) transformed)) #f)
 | 
					  (check-equal? ((query-selector (λ (t a c) (has-class? "reviews" a)) transformed)) #f)
 | 
				
			||||||
 | 
					  ; check that (& x) sequences are not broken
 | 
				
			||||||
 | 
					  (check-equal? ((query-selector (λ (t a c) (dict-has-key? a 'data-test-ampersand)) transformed))
 | 
				
			||||||
 | 
					                '(div (@ (data-test-ampersand) (class "mw-collapsible-content"))
 | 
				
			||||||
 | 
					                      (& ndash)))
 | 
				
			||||||
  ; benchmark
 | 
					  ; benchmark
 | 
				
			||||||
  (when (file-exists? "../storage/Frog.html")
 | 
					  (when (file-exists? "../storage/Frog.html")
 | 
				
			||||||
    (with-input-from-file "../storage/Frog.html"
 | 
					    (with-input-from-file "../storage/Frog.html"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -86,15 +86,16 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
; "element" is a real element with a type and everything (non-string, non-attributes)
 | 
					; "element" is a real element with a type and everything (non-string, non-attributes)
 | 
				
			||||||
(define (element-is-element? element)
 | 
					(define (element-is-element? element)
 | 
				
			||||||
  (and (element-is-bits? element) (not (element-is-xattributes? element))))
 | 
					  (and (element-is-bits? element) (not (eq? (car element) '&))(not (element-is-xattributes? element))))
 | 
				
			||||||
(module+ test
 | 
					(module+ test
 | 
				
			||||||
  (check-true (element-is-element? '(span "hi")))
 | 
					  (check-true (element-is-element? '(span "hi")))
 | 
				
			||||||
  (check-false (element-is-element? '(@ (alt "Cute cat."))))
 | 
					  (check-false (element-is-element? '(@ (alt "Cute cat."))))
 | 
				
			||||||
  (check-false (element-is-element? "hi")))
 | 
					  (check-false (element-is-element? "hi"))
 | 
				
			||||||
 | 
					  (check-false (element-is-element? '(& ndash))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
; "element content" is a real element or a string
 | 
					; "element content" is a real element or a string or a (& x) sequence
 | 
				
			||||||
(define (element-is-content? element)
 | 
					(define (element-is-content? element)
 | 
				
			||||||
  (or (string? element) (element-is-element? element)))
 | 
					  (or (string? element) (element-is-element? element) (and (pair? element) (eq? (car element) '&))))
 | 
				
			||||||
(module+ test
 | 
					(module+ test
 | 
				
			||||||
  (check-true (element-is-content? '(span "hi")))
 | 
					  (check-true (element-is-content? '(span "hi")))
 | 
				
			||||||
  (check-false (element-is-content? '(@ (alt "Cute cat."))))
 | 
					  (check-false (element-is-content? '(@ (alt "Cute cat."))))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue