Mercurial Hosting > nabble
annotate src/global/web/Ads.java @ 51:f88ed76ca757
add back noArchive
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 02 Jul 2021 00:32:31 -0600 |
parents | 544442684af6 |
children |
rev | line source |
---|---|
10 | 1 package global.web; |
2 | |
3 import global.HtmlGlobalUtils; | |
4 | |
5 import java.io.PrintWriter; | |
6 import java.io.IOException; | |
7 import javax.servlet.http.HttpServlet; | |
8 import javax.servlet.http.HttpServletRequest; | |
9 import javax.servlet.http.HttpServletResponse; | |
10 | |
11 | |
12 public final class Ads extends HttpServlet { | |
13 protected void service(HttpServletRequest request,HttpServletResponse response) | |
14 throws IOException | |
15 { | |
16 response.setContentType("text/plain"); | |
17 response.setCharacterEncoding("UTF-8"); | |
18 PrintWriter out = response.getWriter(); | |
19 | |
13
544442684af6
add my publisher id to ads.txt
raven <mazdarulez@hotmail.com>
parents:
10
diff
changeset
|
20 out.println("google.com, pub-1691702211255830, DIRECT, f08c47fec0942fa0"); |
10 | 21 out.println("google.com, pub-6750305871516672, DIRECT, f08c47fec0942fa0"); |
22 } | |
23 | |
24 } |