Difference between revisions of "User:Rueen"

From CDOT Wiki
Jump to: navigation, search
(Other)
Line 19: Line 19:
 
<pre>
 
<pre>
 
Index: tabbrowser.xml
 
Index: tabbrowser.xml
== Other ==
+
===================================================================
I'm interested in contributing to the [http://zenit.senecac.on.ca/wiki/index.php/Desktop_Social_Networking_Integration Desktop Social Networking Integration]project as well as the [http://zenit.senecac.on.ca/wiki/index.php/Project_List#Testing_of_Canadian_Banking_and_Financial_Sites_in_Mozilla Testing of Canadian Banking and Financial Sites in Mozilla] project. I've emailed the project's leaders and asked them to provide me with tasks they need completed.
+
RCS file: /cvsroot/mozilla/browser/base/content/tabbrowser.xml,v
 +
retrieving revision 1.243
 +
diff -u -8 -p -r1.243 tabbrowser.xml
 +
--- tabbrowser.xml 18 Sep 2007 00:59:41 -0000 1.243
 +
+++ tabbrowser.xml 15 Oct 2007 21:26:23 -0000
 +
@@ -1073,32 +1073,41 @@
 +
        <parameter name="aURI"/>
 +
        <parameter name="aReferrerURI"/>
 +
        <parameter name="aCharset"/>
 +
        <parameter name="aPostData"/>
 +
        <parameter name="aLoadInBackground"/>
 +
        <parameter name="aAllowThirdPartyFixup"/>
 +
        <body>
 +
          <![CDATA[
 +
+  
 +
+
 +
+
 +
+
 +
+
 +
+  
 +
            var bgLoad = (aLoadInBackground != null) ? aLoadInBackground :
 +
                          this.mPrefs.getBoolPref("browser.tabs.loadInBackground");
 +
            var owner = bgLoad ? null : this.selectedTab;
 +
            var tab = this.addTab(aURI, aReferrerURI, aCharset, aPostData, owner,
 +
                                  aAllowThirdPartyFixup);
 +
            // Set newly selected tab after quick timeout, otherwise hideous focus problems
 +
            // can occur when "browser.tabs.loadInBackground" is false and presshell is not ready
 +
            if (!bgLoad) {
 +
              function selectNewForegroundTab(browser, tab) {
 +
                browser.selectedTab = tab;
 +
              }
 +
              setTimeout(selectNewForegroundTab, 0, getBrowser(), tab);
 +
            }
 +
            if (!bgLoad)
 +
              this.selectedTab = tab;
 +
           
 +
+
 +
+ var position = currentTabIndex + 1;
 +
+
 +
            return tab;
 +
          ]]>
 +
        </body>
 +
      </method>
 +
 +
      <method name="loadTabs">
 +
        <parameter name="aURIs"/>
 +
        <parameter name="aLoadInBackground"/>
 +
@@ -1173,19 +1182,24 @@
 +
            t.maxWidth = this.mTabContainer.mTabMaxWidth;
 +
            t.minWidth = this.mTabContainer.mTabMinWidth;
 +
            t.width = 0;
 +
            t.setAttribute("flex", "100");
 +
            t.setAttribute("validate", "never");
 +
            t.setAttribute("onerror", "this.parentNode.parentNode.parentNode.parentNode.addToMissedIconCache(this.getAttribute('image')); this.removeAttribute('image');");
 +
            t.className = "tabbrowser-tab";
 +
 +
-            this.mTabContainer.appendChild(t);
 +
-
 +
-            if (document.defaultView
 +
+
 +
+
 +
+ var currentTabIndex = this.mTabContainer.selectedIndex;
 +
+ this.mTabContainer.insertBefore(t, this.mTabContainer.childNodes.item(currentTabIndex + 1));
 +
+
 +
+
 +
+
 +
+ if (document.defaultView
 +
                        .getComputedStyle(this.mTabContainer, "")
 +
                        .direction == "rtl") {
 +
              /* In RTL UI, the tab is visually added to the left side of the
 +
                * tabstrip. This means the tabstip has to be scrolled back in
 +
                * order to make sure the same set of tabs is visible before and
 +
                * after the new tab is added */
 +
 +
              this.mTabContainer.mTabstrip.scrollBoxObject
  
== Other ==
+
</pre>
I'm interested in contributing to the '''Desktop Social Networking Integration''' project as well as the '''Testing of Canadian Banking and Financial Sites in Mozilla''' project. I've emailed the project's leaders and asked them to provide me with tasks they need completed.
 
  
 +
== FSOSS 2007 Report (DPS909) ==
 +
[http://zenit.senecac.on.ca/wiki/index.php/User:Rueen/FSOSS_07_Report FSOSS: A Beginner's Perspective]
 
== Other ==
 
== Other ==
  

Revision as of 11:05, 6 November 2007

Profile

In the Bachelor of Software Development (BSD) program. Favorite Language: Java.

Name: Rueen Fiez
Email: rfiez-mo@learn.senecac.on.ca
Blog: Open Source blog

Projects/Assignments

  • Automated Localization Build Tool - we are in currently working on our 0.2 release and are anticipating completion of the release by the end of october. We plan to start the 0.3 release in November.

Automated Localization Build Tool (0.1 Release)

  1. Software Requirements: Python --> Get it from Python's download page
  2. Download the 0.1 release here (contains Python scripts and supporting DTD & Properties files).
  3. System's instructions. Basically, once you have Python installed, double click on the l10nMerge.py script and check the corresponding DTD and Properties files for the changes to the "color" string (which should now be called "colour")
  4. For more information, check out my blog about the 0.1 release.

Modifying Firefox Lab

Index: tabbrowser.xml
===================================================================
RCS file: /cvsroot/mozilla/browser/base/content/tabbrowser.xml,v
retrieving revision 1.243
diff -u -8 -p -r1.243 tabbrowser.xml
--- tabbrowser.xml	18 Sep 2007 00:59:41 -0000	1.243
+++ tabbrowser.xml	15 Oct 2007 21:26:23 -0000
@@ -1073,32 +1073,41 @@
         <parameter name="aURI"/>
         <parameter name="aReferrerURI"/>
         <parameter name="aCharset"/>
         <parameter name="aPostData"/>
         <parameter name="aLoadInBackground"/>
         <parameter name="aAllowThirdPartyFixup"/>
         <body>
           <![CDATA[
+		  
+				
+			
+			
+			
+		  
             var bgLoad = (aLoadInBackground != null) ? aLoadInBackground :
                          this.mPrefs.getBoolPref("browser.tabs.loadInBackground");
             var owner = bgLoad ? null : this.selectedTab;
             var tab = this.addTab(aURI, aReferrerURI, aCharset, aPostData, owner,
                                   aAllowThirdPartyFixup);
             // Set newly selected tab after quick timeout, otherwise hideous focus problems
             // can occur when "browser.tabs.loadInBackground" is false and presshell is not ready
             if (!bgLoad) {
               function selectNewForegroundTab(browser, tab) {
                 browser.selectedTab = tab;
               }
               setTimeout(selectNewForegroundTab, 0, getBrowser(), tab);
             }
             if (!bgLoad)
               this.selectedTab = tab;
             
+			
+			var position = currentTabIndex + 1;
+			
             return tab;
          ]]>
         </body>
       </method>
 
       <method name="loadTabs">
         <parameter name="aURIs"/>
         <parameter name="aLoadInBackground"/>
@@ -1173,19 +1182,24 @@
             t.maxWidth = this.mTabContainer.mTabMaxWidth;
             t.minWidth = this.mTabContainer.mTabMinWidth;
             t.width = 0;
             t.setAttribute("flex", "100");
             t.setAttribute("validate", "never");
             t.setAttribute("onerror", "this.parentNode.parentNode.parentNode.parentNode.addToMissedIconCache(this.getAttribute('image')); this.removeAttribute('image');");
             t.className = "tabbrowser-tab";
 
-            this.mTabContainer.appendChild(t);
-
-            if (document.defaultView
+			
+			
+			var currentTabIndex = this.mTabContainer.selectedIndex;
+			this.mTabContainer.insertBefore(t, this.mTabContainer.childNodes.item(currentTabIndex + 1));
+			
+			
+			
+			if (document.defaultView
                         .getComputedStyle(this.mTabContainer, "")
                         .direction == "rtl") {
               /* In RTL UI, the tab is visually added to the left side of the
                * tabstrip. This means the tabstip has to be scrolled back in
                * order to make sure the same set of tabs is visible before and
                * after the new tab is added */
 
               this.mTabContainer.mTabstrip.scrollBoxObject

FSOSS 2007 Report (DPS909)

FSOSS: A Beginner's Perspective

Other

External Links

DPS909