Switch to unified view

a/tool/src/utils/html.java b/tool/src/utils/html.java
...
...
193
   public static String linkToSearchVirusTotal(String what){
193
   public static String linkToSearchVirusTotal(String what){
194
        return html.link("VirusTotal", "https://www.virustotal.com/en/file/"
194
        return html.link("VirusTotal", "https://www.virustotal.com/en/file/"
195
                +what
195
                +what
196
                +"/analysis/");
196
                +"/analysis/");
197
    }
197
    }
198
 
199
  /**
200
    * Search a term using the VirusTotal engine
201
    * @param what the search term to be found
202
    * @return The HTML text prepared to be added on a web page
203
    */
204
   public static String linkToSearchMetaScan(String what){
205
        return html.link("Metascan", "https://www.metascan.com/en/file/"
206
                +what
207
                +"/analysis/");
208
    }
209
  
210
   
198
   
211
   
199
   /**
212
   /**
200
    * Search a term using the Ohloh engine
213
    * Search a term using the Ohloh engine
201
    * @param what the search term to be found
214
    * @param what the search term to be found
202
    * @return The HTML text prepared to be added on a web page
215
    * @return The HTML text prepared to be added on a web page