-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugs: change bugzilla refs to github issues
- Loading branch information
1 parent
fc7981c
commit ecce4b0
Showing
8 changed files
with
97 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
Objective.... Put all the fancy bells and wistles in | ||
|
||
- Add redirects and links to the old pages | ||
|
||
Improving the docs - non-content | ||
- Mark all file references in some way | ||
|
||
Cleaning things up with URLs | ||
- In building.rst fix the URLs such that they are inline not on their own. | ||
|
||
Read all the docs and improve them | ||
- Remove all <del> entries | ||
- Improve layout and flow of text | ||
- Spell check | ||
- Specific pages | ||
- Cheatsheet | ||
- reorder name and group for a user not a developer | ||
- mention navigation modes or link to it for clarity | ||
- Tips | ||
- probably want to remove the "in older versions" content and check what | ||
you can do in the current release | ||
- Building | ||
- Need a rewrite. That older section that says this don't work should be | ||
removed if doesn't work. | ||
|
||
Theme | ||
- Headers ----- are not lower size then normal. | ||
- These uses fixed sizes not relative sizes causing problems on some browsers. | ||
|
||
|
||
|
||
Leandro | ||
======= | ||
|
||
Sites | ||
----- | ||
- In http://translatehouse.org/products.html there are no links to the products. | ||
|
||
TTK | ||
--- | ||
- In TTK docs fix the "documenation" in | ||
http://docs.translatehouse.org/projects/translate-toolkit/en/latest/index.html | ||
|
||
Virtaal | ||
------- | ||
- When I enter in | ||
http://docs.translatehouse.org/projects/virtaal/en/latest/index.html I see a | ||
lot of text, but perhaps showing a list like in | ||
http://docs.translatehouse.org/projects/translate-toolkit/en/latest/index.html | ||
would be better. I mean putting a list with all "User's guide" items on it | ||
instead of having a paragraph. | ||
- I found "Using Virtaal" confusing. Better "User's guide". Perhaps splitting | ||
it in several subpages will be better. | ||
IMHO having a similar structure in | ||
http://docs.translatehouse.org/projects/pootle/en/latest/index.html and in | ||
http://docs.translatehouse.org/projects/translate-toolkit/en/latest/index.html | ||
and in http://docs.translatehouse.org/projects/virtaal/en/latest/index.html | ||
would be helpful. | ||
- If I have to chose I will use a structure for the first page like the one in | ||
http://docs.translatehouse.org/projects/translate-toolkit/en/latest/index.html | ||
perhaps adding the image for the software, like Virtaal does. | ||
- Definitely move | ||
http://docs.translatehouse.org/projects/virtaal/en/latest/index.html#installation | ||
to its own page. | ||
|
||
Pootle | ||
------ | ||
- In Pootle docs http://docs.translatehouse.org/projects/pootle/en/latest/ when | ||
you got to the list and click on "Installation" link, instead of going | ||
http://docs.translatehouse.org/projects/pootle/en/latest/server/installation.html | ||
you are sent to | ||
http://docs.translatehouse.org/projects/pootle/en/latest/server/index.html#installation | ||
Perhaps this is not the best behavior since can confuse users. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
extension=".rst" | ||
|
||
product=$1 | ||
shift 1 | ||
files=$* | ||
|
||
echo "# Automatically generated - please review each redirect" | ||
for file in $files | ||
do | ||
base_filename=$(basename $file $extension) | ||
wikifile=/wiki/$product/$base_filename | ||
rtdfile=http://docs.translatehouse.org/projects/$product/en/latest/${base_filename}.html | ||
printf "Redirect Permanent %-40s%s\n" ${wikifile} ${rtdfile} | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters