JDOC:Joomla! Doc Sprints/Start Here
From Joomla! Documentation
Instructions
Below is a list of tasks, categorised by intended audience. There will be overlap so treat this as a rough guide only. Please feel free to add new topics to this list. To start writing on a topic, change the item in this list into a link (unless it's already a link of course!). To do this you simply surround the text by a pair of square brackets. For example, to make "text" into a link, change it to "[[text]]". Save your change. The link text should now appear in red. Click on this new link and you will be taken to an editor screen for the new page. Enter your new topic text and click save. Simple as that. If you encounter any problems, ask for help on the IRC channel. When you begin editing a page please add {{inuse}} to the top of the page before you start working on it so that others do not create conflicting changes to the same page. And don't forget to remove it again when you have finished! Thank you. |
Reference Information
|
Doc Camp Cookie Jar
This is a list of small tasks that should be quick to get done and might be a good introduction to working on the documentation.
- Joomla! - basic introduction to what Joomla! is, why you might want to download it, and where to go to get more information.
- Copying a Joomla website
- Using an FTP client to upload files
- Using a terminal session
- Migrating from 1.0.x to 1.5 Stable - see [1]
We need some basic information on the following pages. Looking for a simple definition of the term with links to further information if required.
- ACL (redirect to Access Control List)
- Access Control List
- Admin (redirect to Administrator)
- Administrator
- Backup
- Banner
- Beez
- Blog
- Calendar
- Configuration
- CSS
- Database
- Events
- Front page
- Global configuration
- Installer
- Languages
- LDAP as in Lightweight Directory Access Protocol
- Module positions
- PHP
- Register globals
- Requirements
- Release
- Restricted access
- Screen Captures
- Search
- Security
- session save path
- Setup
Audience: Users/Administrators
Users are visitors to a Joomla! website; administrators are people who install and maintain the website. The assumption is that these people will not know how to write code.
- Installation notes for specific platforms
- Help screens.
- Marketing Information such as features and benefits.
- Create one or more demo/showcase sites then create tutorials explaining how each was put together. For inspiration see: [2]
- Absolute Beginners Guide to Joomla!
- Landing Pages for this wiki.
- FAQs Frequently Asked Questions
Audience: Web Designers
Web designers are those people tasked with creating a Joomla! website that will later be looked after by an administrator. These people can be assumed to know about HTML and CSS but may have only minimal knowledge of PHP.
- Creating clickable background images using CSS.
- There is quite a lot for web designers in the Joomla! 1.5 Template Tutorials Project. In particular, look at the Outline for Template Tutorials.
- jdoc statements for templates
- Modify the favicon
Audience: Core Developers
By "core developers" we mean developers who are contributing to the Joomla! core distribution which includes the core extensions as well as the Framework.
- Developer guidelines.
- Participating in the community: a brief description of how people can get involved.
- Coding style and standards.
- Secure coding guidelines.
- Error message conventions.
- Exception handling.
- Patch submission guidelines.
- Filing bugs/issues.
- How to release a distribution tarball.
- Release numbering, compatibility and deprecation.
- Localisation (L18N): an explanation of how localisation is implemented in Joomla! 1.5 and how to use it.
- Routing: how it works and how to use it
Audience: Third-party Developers
By "third-party developers" we mean developers who are working on extensions to Joomla! (components, modules, plugins and templates) which are made available separately from the Joomla! distribution.
- Complete/update/review the wiki API reference (assumes this has been moved from DocuWiki to MediaWiki).
- Update developer tutorials and how-to's currently on dev.joomla.org
- Review all material under the tutorials heading at http://dev.joomla.org/component/option,com_jd-wiki/Itemid,32/
- Recommend material to be migrated over to docs.joomla.org
- Update material that is to be migrated over to docs.joomla.org
- How to debug your code.
- Write a tutorial giving debugging tips for new developers. Perhaps list different kinds of problems code might have and suggested approaches to locating the problem and fixing it.
- Using the core parameter types
- Creating custom XML parameter types.
- Write a document detailing the steps to creating a custom XML Parameter type. Explain how these types can be used in templates, modules, components and plugins.
- Creating component preferences.
- Write a document describing how to create an xml file for modifying component preferences and how to add a Parameters button to an administrator toolbar.
- Adding JavaScript and CSS to the page.
- Write a document describing how to add JavaScript and CSS to the page. Explain how to decide whether JavaScript should go in the head block or in the page itself and how to insert the JavaScript.
- Accessing the current user object.
- Write a document describing how to access the current user object and also indicate what type of information can be found in the object, and how that data should be retrieved and/or set.
- Adding AJAX to your component.
- Write a document describing how to add AJAX to an MVC component. If desired, use the MVC Hello World tutorial as a base. Describe where various elements should go in the MVC design pattern. Also describe how to implement MVC in a module (these need supporting components to do AJAX).
- Using JPagination in your component (frontend and backend).
- Describe the steps necessary to add pagination to a component using the JPagination class. Describe the differences between frontend and backend.
- Creating a toolbar for your component.
- Adding configuration objects to modules and plugins.
- Storing data in the session between page loads.
- Using the caching system in your component.
- Creating a file uploader in your component.
- Suppressing output of extra HTML.
- Supporting plugins in your component.
- Explain how to add triggers so that your component can fire custom events.
- Adding multi-language support.
- Retrieving data from GET and POST requests - the Joomla! way.
- Adding view layout configuration parameters.
- Explain how to create an XML file that will allow users to configure views.
- Using the installer API to support package installation.
- Explain how to use the JInstaller API to install add-ons to components
- How to implement XML-RPC in a component
- There are two ways to do this:
- Implement it using an XML-RPC plugin
- Implement it in the component itself using raw views
- There are two ways to do this:
- How to use the filesystem package
- How to use the filter package
- Describe how and when to use the Filter package and explain what needs to be filtered for various situations (for queries, for URLs, etc)
- How to use the registry package
- How to use JSimpleXML
- How to load and store XML files and how to work with them
- How to use JDate
- What JDate does and how to use it...
- How to add CSRF anti-spoofing to forms
- How to use JHTML::_( 'form.token' ) and token checking to secure components
- How to add breadcrumbs
- How to use the JTable class
- How to create component feeds (RSS/ATOM)
- How to create PDF views
- How to send email from components
- What's available in the JFactory class
- How to generate paths for client side and server side
- How to access information from the request/browser
- This focuses on using the JBrowser class to retrieve information about the features available in the user's browser.
- How to create a search plugin (To be reviewed)
- How to create a content plugin
- How to create an editor plugin
- How to create a system plugin
- What can be done with a user plugin
- How to create a module
- How to create a stand-alone application using the Joomla! Framework
- How to work with parameters
- How to use the JToolBar class in the frontend
- How to create a custom button
- How to use the editor in a component
- How to use the JPane classes in a component
- How to cloak email addresses
Audience: Testers
These people may be testing functionality from a user perspective; or they may be developers testing the code itself.
- Automated testing.
Audience: Various
Stuff that pertains to multiple audiences.
- Joomla! 1.5 Template Tutorials Project
- Integrate GHOP student work
- Landing pages in this wiki
- Pages that define terms can be added to the Glossary category by adding [[Category:Glossary]] at the end of the page.
Audience: Documentors
This is meta documentation for use by the Documentation Working Group and other documentors.