update index.html

Former-commit-id: 86f0ec3943
Former-commit-id: 21db27a6db918ef26c3493d587f50438c2289d30
This commit is contained in:
idk
2022-09-02 18:34:40 -04:00
parent 4921de65d4
commit 3598e27ffa
5 changed files with 54 additions and 6 deletions

View File

@ -16,7 +16,11 @@ package: net.i2p.i2pfirefox
Show dependencies Show dependencies
</summary> </summary>
<ul> <ul>
<li>java.io.BufferedReader</li>
<li>java.io.File</li> <li>java.io.File</li>
<li>java.io.FileReader</li>
<li>java.io.FileWriter</li>
<li>java.io.IOException</li>
</ul> </ul>
</details> </details>
@ -24,7 +28,7 @@ package: net.i2p.i2pfirefox
## Methods ## Methods
### main [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L26) ### main [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L30)
+ Description: + Description:
+ Access: public + Access: public
@ -36,7 +40,7 @@ package: net.i2p.i2pfirefox
| args | String[] | | | args | String[] | |
### validateProfileDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L47) ### validateProfileDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L51)
+ Description: Return true if the profile directory is valid. + Description: Return true if the profile directory is valid.
+ Access: public + Access: public
@ -48,7 +52,31 @@ package: net.i2p.i2pfirefox
| profileDirectory | String | the profile directory to check | | profileDirectory | String | the profile directory to check |
### validateFile [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L86) ### deRestrictHTTPS [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L84)
+ Description:
+ Access: private
+ Modifiers: static
+ return: boolean
| Name | Type | Description |
| ----- | ----- | ----- |
| profile | String | |
### undoHttpsOnlyMode [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L104)
+ Description:
+ Access: private
+ Modifiers: static
+ return: boolean
| Name | Type | Description |
| ----- | ----- | ----- |
| fileToBeModified | File | |
### validateFile [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L140)
+ Description: Return true if the file is valid. + Description: Return true if the file is valid.
+ Access: public + Access: public
@ -60,7 +88,7 @@ package: net.i2p.i2pfirefox
| file | String | the file to check | | file | String | the file to check |
### validateExtensionDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L113) ### validateExtensionDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L167)
+ Description: Return true if the extension directory is valid. + Description: Return true if the extension directory is valid.
+ Access: public + Access: public

View File

@ -311,7 +311,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
<delete dir="plugin/eepsite/docroot/torrents/" /> <delete dir="plugin/eepsite/docroot/torrents/" />
<!-- get version number --> <!-- get version number -->
<buildnumber file="scripts/build.number" /> <buildnumber file="scripts/build.number" />
<property name="release.number" value="0.0.19" /> <property name="release.number" value="0.0.20" />
<!-- make the update xpi2p --> <!-- make the update xpi2p -->
<!-- this contains everything except i2ptunnel.config --> <!-- this contains everything except i2ptunnel.config -->

View File

@ -115,6 +115,9 @@
</div> </div>
</div> </div>
</div> </div>
<a id="returnhome" href="/">
/
</a>
<h1> <h1>
<a href="#i2p-plugins-firefox" rel="nofollow"> <a href="#i2p-plugins-firefox" rel="nofollow">
<span></span> <span></span>
@ -465,10 +468,15 @@ if (i2pIsRunning()) {
TODO: Summarize differences TODO: Summarize differences
</p> </p>
<div id="sourcecode"> <div id="sourcecode">
<span id="sourcehead">
<strong>
Get the source code:
</strong>
</span>
<ul> <ul>
<li> <li>
<a href="https://github.com/eyedeekay/i2p.plugins.firefox"> <a href="https://github.com/eyedeekay/i2p.plugins.firefox">
Source Code: (https://github.com/eyedeekay/i2p.plugins.firefox) Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
</a> </a>
</li> </li>
</ul> </ul>

View File

@ -8,3 +8,8 @@
#hidenav {display:block; } #hidenav {display:block; }
#shownav:target {display: block; } #shownav:target {display: block; }
#hidenav:target {display: none; } #hidenav:target {display: none; }
#donate {display:none; }
#hidedonate {display:block; }
#donate:target {display: block; }
#hidedonate:target {display: none; }

View File

@ -155,3 +155,10 @@ input {
float: right; float: right;
width: 15%; width: 15%;
} }
#returnhome {
font-size: xxx-large;
display: inline;
}
h1 {
display: inline;
}